Sometimes it's hard to set the title you want for your views. So you have to do this programmatically in your module. This snippet shows you how.
Source code viewer
// Don't forget to replace HOOK with your modules name. function HOOK_views_pre_render(&$view) { if ($view->name == 'taxonomy_term' && $view->current_display == 'page') { drupal_set_title('Your Page Title'); } }Programming Language: PHP