hello
I do not want to show the post time but leave the date in this span: news-time.
Thank you
Hi,
Can you post the link to your Blog please?
Regards,
Josue
http://www.domodeco.fr
look at the footer, the third column
Hey!
Please insert this code into the theme functions.php file:
function change_avia_date_format($date, $function) {
if(!empty($function) && $function != 'avia_get_comment_list') $date = get_option('date_format');
return $date;
}
add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
Regards,
Peter
perfect and solved :-)