There are no upcoming events.
// Hide subscribe box on all event pages.
add_filter( ‘tec_views_v2_subscribe_links’,
function( $subscribe_links ) {
// When passed an empty array, the template will bail and not display.
return [];
},
100
);