Tagged: Enfold Combo Widget
Hi,
Thanks a lot for the great theme.
I am using the Enfold combo widget and already deactivated comments thanks to old forum questions.
I would like to deactivate the hour and possibly the date at which the popular post where posted. Is there a way to do that ?
Hey anniet,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi Rikard,
here is the link
http://www.tinteo.com/actualites/
Hey!
Add this to the bottom of your functions.php file.
add_filter( 'avia_widget_time', 'enfold_customization_change_widget_time' )
function enfold_customization_change_widget_time( $time ) {
$time = get_option('date_format');
return $time;
}
Best regards,
Elliott
Thanks,
Do you have an option as css ?
it would be better as I don’t have a child theme.
thanks
Hey!
Sure, please add following code to Quick CSS in Enfold theme options under General Styling tab
span.news-time {
display: none;
}
Cheers!
Yigit
thanks