When using The Events Calendar Shortcode & Block, you may want to avoid using the main events page and instead use a curated listing.

This can be done using a small filter:

add_filter( 'tribe_get_events_link', function( $link ) {
return 'https://yoursite.com/new-events-page';
} );

This code can be added using the free Code Snippets plugin, or creating a functional plugin.

Published by Brian Hogg