Hi
I would like to use the latest posts widgets to show a list of upcoming events but I don’t want to show the created date. Is that possible with some Quick CSS
Alternatively can you recommend an events plugin suitable for use with enfold?
Many thanks
Tia
Hey Tia!
Please add followng code to Functions.php file in Appearance > Editor
add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
function change_avia_date_format($date, $time_format) {
$time_format = get_option('date_format');
return $time_format;
}
Best regards,
Yigit