Hi Nico.
Thanks for the link. I think that is what I want. I just tried it, though, and crashed my site. (Whoops!)
I added the following code at the end of the functions.php file, after the last } of the previous function and right before the final ?>
/**
* Defines alternative titles for various event views.
*
* @param string $title
* @return string
*/
function filter_events_title( $title ) {
// Day view category page
elseif ( tribe_is_day() && is_tax() ) {
$title = 'Day view category page';
}
return $title;
}
Do you know why adding that would have generated a 500 error? I’m pretty good with html and css, but am really a disaster with php. ?