Hi James,
Thanks for touching base! I’ll help you here…
I’m wondering if there is a way to put a header “block” on to the calendar month view only, not have it show in single events.
I’m not sure about this, by header block you mean HTML content? If this is the case, then the snippet below should do the trick:
/* Add some custom content before month view */
function maybe_add_content ( ) {
if ( ! tribe_is_month() ) return;
echo 'Hello month view!';
}
add_action('tribe_events_before_template', 'maybe_add_content');
You’ll need to paste the code in your child theme’s functions.php file.
Please let me know if this answers your question,
Best,
Nico