Remove the “Calendar of Events” heading on the events list page
The best and easiest way at this point is to do so using CSS. Place the following CSS in a copy of /wp-content/plugins/the-events-calendar/resources/events.css placed in an ‘events’ folder in your theme:
.events-archive .tribe_events .entry-title,
.tribe-events-cal-title {
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height: 1px; width: 1px;
margin: -1px; padding: 0; border: 0;
}
This will hide the title on the grid and list view but retain it on single events. It’s also still making the title accessible by screen readers and search engines which is better than just setting display: none. See here for more info on this technique.
This should cover a broad range of themes but if it’s not working for you, try changing the .entry-title target to suit your theme. If you’re still having issues, hit us up in the forums.
