YvonneDeffner
|
August 31, 2022 at 7:25 am
Hi there,
I´m using Elementor Pro to setup page with Event Espresso booking functions.
I´ve used Elementor posts widget to display Event lists because there is option to show it in a cards look and has many options to style.
But there is 1 problem: Order by options by this widget are ignored in frontend (and my wished order-option is not there).
So I tried to inject my wished ordering as PHP snippet:
function my_query_by_different_order( $query ) {
$query->set( 'orderby', 'event_start_date ASC' );
}
add_action( 'elementor/query/my_custom_filter', 'my_query_by_different_order' );
But this doesn´t work. Do you have an idea what PHP snippet could work for ordering by start date in event lists?
Thank you and best regards
Anna-Lena
|