Hi akis2001,
Thanks for posting!
So we wouldn’t normally recommend modifying core plugin code. Perhaps instead you could set up the following snippet either in the theme’s functions.php file or a custom plugin?
add_action( '_admin_menu', 'remove_tribe_settings_page', 50 );
function remove_tribe_settings_page() {
remove_action( 'admin_menu', array( TribeSettings::instance(), 'addPage' ) );
}
This should remove the main events settings link from the menu. Does that help?
2. how can i set the default sidebar to appear on an individual event page.
Do note that we try hard to stick to one issue or question per forum topic, so if you need further assistance with this I’d ask that you create a fresh topic.
That said, this is often achievable simply by changing the default template setting via the Events → Settings → Display admin screen – try playing with that and see if it helps (or create a new topic if you need further assistance for this issue).
Thanks!