Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #825262

    Hi
    I would like to use the latest posts widgets to show a list of upcoming events but I don’t want to show the created date. Is that possible with some Quick CSS

    Alternatively can you recommend an events plugin suitable for use with enfold?

    Many thanks

    Tia

    #825272

    Hey Tia!

    Please add followng 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, $time_format) {
      $time_format = get_option('date_format');
      return $time_format;
    }

    Best regards,
    Yigit

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