Ha, I was just coming to ask the same question! Hopefully Devs will be along soon with an answer.
We have about 100 past events now, and list them separately on their own page using [event_listing type=”past”]
so a way to show most recent first would really be helpful! 🙂
-
This reply was modified 1 year, 10 months ago by
AJ Don.
-
This reply was modified 1 year, 10 months ago by
AJ Don.
Hello @dreyes13 and @cultural-keys,
We are sorry for the inconvenience.
We apologies to inform you that you can’t do this with the help of any default shortcode. You would have to perform alterations in PHP files. We would suggest you use pre-defined filters for the alterations.
For now, you can use this code to list posts in descending orders.
add_filter('sep_output_events_args','sep_desc_order_view', 11, 2);
function sep_desc_order_view($args, $atts) {
$args['order'] = 'DESC';
return $args;
}
Feel free to reach out if the issue still persists.
Regards,
That is excellent, thank you for your response and the code. To which of the php files should I add the code?
Hi @dreyes13,
We can’t confirm any file. You have to debug this on your own or take help from an expert WP Plugin Developer.
Feel free to reach out if the issue still persists.
Regards,
Oh, that’s disappointing that it’s not a simple file fix…. 🙁
Oh well, Fiverr here I come I guess!