I can’t seem to find where I might do that. The client does not want the word “Events” in there. I’ve been editing the single-event.php file in my child theme, so I’m all square on all that, I just don’t know how to change this text.
<?php
echo tribe_get_event_categories(
get_the_id(), array(
'before' => '',
'sep' => ', ',
'after' => '',
'label' => null, // An appropriate plural/singular label will be provided
'label_before' => '<span class="event-categories">',
'label_after' => '</span>',
'wrap_before' => '<span class="tribe-events-event-categories">',
'wrap_after' => '</span>',
)
);
?>
Thank you!