Hi Tamara,
You can change this text by following the instructions in our themer’s guide to copy the templates for the views that you want to change the titles for into your child theme for editing. For the list view, the template you’ll want to copy can be found at wp-content/plugins/src/views/list/content.php. The title is set on the following line:
You can also place the following in the functions.php file of your child theme, replacing “Custom text” with your new title:
function tribe_change_list_view_title ( $title ) {
if ( tribe_is_list_view() ) {
$title = 'Custom text';
}
return $title;
}
add_filter( 'tribe_get_events_title', 'tribe_change_list_view_title' );
Let me know how that works for you!
Thanks,
Jennifer