Hello coding masters,
Is there a way to make all events published to a specific category automatically featured?
Thank you!
Is there a way to make all events published to a specific category automatically featured?
Thank you!
if ($category->id == 17 ) {
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->update($db->quoteName('#__social_clusters'))->set($db->quoteName('featured') . ' = 1')->where($db->quoteName('alias') . ' = ' . $db->quote($event->alias));
$db->setQuery($query);
$result = $db->execute();
}