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

    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;
    }

    #691864

    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

    #691877

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.