Tagged: portfolio items
Hi everybody,
I created a sidebar with my portoflio items but I’d like to hide the time under the title.
How can I do it?
Thanks.
Hey Gian Maria!
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) {
return false;
}
If that does not help, please post a link to your page and point out the changes you would like to make.
Best regards,
Yigit
Perfect!
Thanks.