Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1042524

    hello, I need to hide the time (hours:minutes) in posts, how can I do it?
    thanks in advance!!

    #1042577

    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

    #1043302
    This reply has been marked as private.
    #1043547

    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

    #1043696
    This reply has been marked as private.
    #1044126

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

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