Hi Matt,
The Community Events plugin currently uses your theme’s page.php template and if there are things you want to remove from the template only on the community pages you’ll need to use these two conditional checks in PHP to determine whether you are on one of the community pages and if so, display or don’t display certain things:
if(tribe_is_community_my_events_page()) {
echo 'this is the my events community page!';
}
if(tribe_is_community_edit_event_page()) {
echo 'this is the add/edit community events page!';
}
…you could also just hide things in CSS by targeting either the .tribe_community_list or .tribe_community_edit body classes.
Does that help?
– Jonah