Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author TC.K

    (@wp_dummy)

    You can use filter to do it.

    add_filter('uwpqsf_taxonomy_arg', 'change_order_taxo','',3);
    function change_order_taxo($args,$taxname,$formid){
       $args['order'] = 'DESC';
       return $args;
    }
    Thread Starter erioch

    (@erioch)

    Thanks so much for the advice, just one more question if you do not mind, where or which file should I add the snippet?

    Kind regards,

    Erick

    Plugin Author TC.K

    (@wp_dummy)

    Your theme’s functions.php.

    Thread Starter erioch

    (@erioch)

    Thanks it works…

    Cheers

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sorting dropdown listing in descendig manner’ is closed to new replies.