How to fix page titles for taxonomy term pages. It creates title from term hierarchy. You have to remove the views title override.
Source code viewer
function THEME_preprocess_page(&$variables) { // Fix taxonomy view titles $title = ''; $tree = taxonomy_get_parents_all(arg(2)); foreach($tree as $term) { $title .= $term->name; } drupal_set_title($title); } }Programming Language: PHP