Hi there, Krystal! Thanks for reaching out. 🙂
Good question. I do want to note, first of all, that we are a limited in how much support we can provide for custom development questions like this–but I’m happy to help point you in the right direction, if I can.
If you are using theme’s default page template, then you could edit the template to display everywhere but Events by wrapping the sidebar in a conditional.
For example:
if ( is_page_template('page.php') && ! tribe_is_month() || tribe_is_event())Â {
/* get the sidebar... */
}
Note this has not been tested and you may need to fiddle with it to get exactly what you’re looking for. You can see a full list of calendar conditionals here.
Another way might be to use the default events template. This would naturally remove the sidebar from the event calendar view.
Give those a try and let me know if it does the trick. 🙂
Cheers!
Geoff