Hi,
how can I remove the time (but not the date) from the Enfold Latest News Widget?
With
.news-time { display: none; }
time and date is removed, but I want to keep the date.
BR
Florian
Hey catchbudapest,
Could you post a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hey Rikard,
sorry for the late reply.
See for example the recent posts in the sidebar at http://www.catchbudapest.com/life/
BR
Florian
Hi Florian,
Please add following 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, $function) {
return false;
}
Best regards,
Yigit
Hi Yigit,
with this code time and date is removed, but I want to keep the date (and just remove the time).
BR
Florian
Hi,
Sorry Florian! Please change the code to following one
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
That worked now, thanks a lot!!