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

    Hi, we are using the enfold theme (it’s a marvel) for our concert clubs in Spain.
    But we have a serious problem with the magazine
    We can’t change the order of dates
    Is it possible to do it?
    I’m sharing with you the link to the concert agenda web site:

    thanks!

    #1322020

    Hey Bases de datos de empresas,

    Good to know that you are liking the theme and thank you for the inquiry. Are you trying to adjust the order of the items in the magazine element? You can use the avf_magazine_entries_query to adjust the default query.

    /** adjust the magazine element query **/
    function avf_magazine_entries_query_mod($query, $params)
    {
        $query['order'] = 'DESC';
        $query['orderby'] = 'date';
        return $query;
    }
    add_filter('avf_magazine_entries_query','avf_magazine_entries_query_mod', 10, 2);
    

    But if you are just trying to adjust the date format, try to edit it in the Settings > General > Date Format option.

    Best regards,
    Ismael

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