Ed
(@erishel)
Hey there,
Thanks for reaching out 😄
Give this a shot in child functions.php:
add_filter( 'tribe_events_list_widget_query_args', 'tribe_add_many_events_to_list_widget' );
function tribe_add_many_events_to_list_widget( $args ) {
if ( ! isset( $args['posts_per_page'] ) ) {
return $args;
}
$args['posts_per_page'] = 20;
return $args;
}
Take care,
Ed 🤟
but widget option not working… for example other page i need 3 … but not working…
Ed
(@erishel)
So no matter which option you choose it shows all events?
Sounds like a conflict may be at play here. I’d work through Testing for Conflicts and see if that helps.
Take care,
Ed 🤟