Hi Stephan,
Thanks for reaching out on this! You are seeing this notice because you have a page name ‘events’, the notice is letting you know that the calendar will show up instead of the page. So there’s nothing wrong with it.
We noticed this is annoying for most of users that need to have the ‘events’ page in place, so this notice will be dismissable in the future. For now, if you want to hide the notice you can add this snippet to your functions.php file (located at wp-content/themes/your-theme/):
// remove slug conflict admin notice
if (class_exists('Tribe__Events__Admin__Notice__Archive_Slug_Conflict')) {
remove_action( 'admin_init', array( Tribe__Events__Admin__Notice__Archive_Slug_Conflict::instance(), 'maybe_add_admin_notice' ) );
}
Please let me know if you can manage to hide it,
Best,
Nico