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

    How do i remove the timestamp from each post in the latest news widget but keep the date

    #684062

    Hey kilimats,

    Please check this thread https://kriesi.at/support/topic/latest-news/#post-646514 If you have any questions please revert back to us with a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    #684070

    thanks i tried your code and the last one at the bottom shown below, but in both case the date for all post became the same day, it did remove the time though, see private note for example

    add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
    function change_avia_date_format($date, $function) {
      $output = date( 'Y-d-m');
      return $output;
    }
    #684170

    Hi!

    Please use the code as following

    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,
    Yigit

    #684233

    magical thanks !

    #684235

    Hi!

    You are welcome!
    Enjoy your weekend.

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove time from the enfold latest news widget’ is closed to new replies.