Hi, Kim.
How about just hiding that output on category pages?
This CSS should work for you:
body.post-type-archive-tribe_events.events-category .tribe-events-before-html {
display: none;
}
This should make your Above the Calendar HTML text appear on all events archive views except category views (where it’s there in the page source but hidden via CSS).
You can add custom CSS code via your child theme’s style.css file or via a third-party plugin (not guaranteed or supported by us), like:
- SiteOrigin CSS (helps you visually build CSS selectors via its Inspector and Visual Editor, if that’ll help you)
- Simple Custom CSS
- Jetpack (supports regular CSS and the LESS and Sass pre-processors)
If you’re not a CSS expert, Jetpack’s Custom Design reference may prove helpful.
Please let me know how this goes for you.