Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #731206

    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.

    #731208

    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

    #731214

    Perfect!
    Thanks.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Hide time on Portfolio Items sidebar’ is closed to new replies.