hello, I need to hide the time (hours:minutes) in posts, how can I do it?
thanks in advance!!
Hey ftt123,
Please include the url to the page in question so we can examine the elements, you would like to hide the time, but not the date?
Best regards,
Mike
Hi,
Thank you for the image, Try adding this code to the end of your functions.php file in Appearance > Editor:
add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
function change_avia_date_format($date, $function) {
$output = get_option('date_format');
return $output;
}
Best regards,
Mike