Hello, how could I do to hide only the time from comment meta?
I’ve tried bouth the below CSS code, but bouth of them hide the entire line, and I need to hide only the “time” portion, leaving the date.
.comment-meta.commentmetadata {
display: none;
}
.main_color time {
display: none;
}
Hey ttiagoo!
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) {
$output = get_option('date_format');
return $output;
}
Cheers!
Yigit
Hi ttiagoo!
We do not have a different option to hide one part only, I am afraid.
It is the way that data been generated.
Please consider to hire a freelance, who can help you hide it with either a child theme or some Jquery.
Thanks a lot
Regards,
Basilis