Hi Eric,
Thanks for using our plugins! Let me try to help you with this one.
I have couple of options in mind how you could solve this:
- Check in your theme’s settings whether you can switch off the sidebars for the blog. (That’s only a good solution if you also do not want the sidebars on your blog page.)
- You could customize the template files of The Events Calendar to exclude the sidebars. Here’s our themer’s guide and a template overiew to help you in that.
- You could use a plugin like Widget Logic to define what widgets are shown on what page.
- You can do some CSS tweaking in your themes (child themes) style.css file to simply hide the 2 sidebars. Below is a sample:
.post-type-archive-tribe_events #content-wrapper aside { display: none; }
.post-type-archive-tribe_events #left-content-wrapper, .post-type-archive-tribe_events #left-content-wrapper #content { width: 100%; }
The fastest is copying the CSS code in your style.css file, but it is the least elegant. 🙂 But it works.
Let me know if this helps!
Cheers,
Andras