I don’t know why the code wont show. I will try to post it again WITHOUT the php tags.
—————————————–
add_filter(‘tribe_get_events_title’, ‘my_get_events_title’);
function my_get_events_title($title){
if( is_tax() ){
return $title;
}else{
return ‘Kalender’;
}
}