• Resolved gkina

    (@gkina)


    Hi!
    i would like to know if it was possible to sort by date from the oldest the dashboard of all listings.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey @gkina,

    It sure is! Just copy-paste this on your theme’s functions.php:

    
    add_filter('directorist_dashboard_query_arguments', functions($args) {
        $args['order'] = 'ASC';
        return $args;
    });
    

    Let me know if there’s anything else I can help you with.

    Regards,
    Mahdi.

    Thread Starter gkina

    (@gkina)

    Sorry but i have this error:
    syntax error, unexpected ‘;’
    in this line: $args[‘order’] = ‘ASC’;

    thanks

    Hey @gkina,

    Sorry about that, silly mistake, try this:

    
    add_filter('directorist_dashboard_query_arguments', function($args) {
        $args['order'] = 'ASC';
        return $args;
    });
    

    Regards,
    Mahdi.

    Thread Starter gkina

    (@gkina)

    It works! Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Order dashboard listings’ is closed to new replies.