Hi I’d like to know how ot add a quick CSS solution for each of the following cases:
1- remove the time on the latest news widget (while keep the date).
2- remove both the time and date on the latest news widget.
3- remove the time on the combo widget (while keep the date).
4- remove both the time and date on the combo widget.
Thank you :)
Hey Mahran2016,
1 & 3- Please add following code to Functions.php file of your child theme in Appearance > Editor
add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
function change_avia_date_format($date, $function) {
return get_option('date_format');
}
2 & 4- Please add following code to Quick CSS in Enfold theme options under General Styling tab
span.news-time { display: none !important; }
Best regards,
Yigit