When using the Default Page Template setting (Events > Settings > Display tab > Events template) some themes will add the word “Archives” to the page title on calendar views. It might seem like this is something The Events Calendar is doing, but it’s actually coming from the page or archive template of the theme. We’ll show you how to remove the word “archives” from the main calendar page.

Some themes add the word "archives" to the main event page

How can we remove it? Copy the below code into your functions.php file (or wherever you usually put custom code):

add_filter(
    'get_the_archive_title',
    function ( $title ) {
        if ( is_post_type_archive( 'tribe_events' ) ) {
            $title = sprintf( 
				__( '%s' ), 
				post_type_archive_title( '', false ) 
			);
        }

        return $title;
    }
);