Viewing 3 replies - 1 through 3 (of 3 total)
  • 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 🤟

    Thread Starter Abe Prangishvili

    (@abeprogrammer)

    but widget option not working… for example other page i need 3 … but not working…

    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 🤟

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

The topic ‘widget list limit 10’ is closed to new replies.