This following code in Blueprint's template.php causes the title of a view of taxonomy terms to get wrapped in Topic "" .

   // wrap taxonomy listing pages in quotes and prefix with topic
    if (arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
      $title = t('Topic') .' “'. $title .'”';
    }

1. Is there a purpose behind this since you could easily customize the title through the view (and this code interferes with that)?
2. If there is a purpose behind it, is there a way for me to override it in the template.php of a subtheme?
3. If there isn't a purpose behind it, should this be take out of Blueprint's template.php?

Thanks.

Comments

designerbrent’s picture

Status: Active » Fixed

Thanks for bringing this up. It wasn't a big deal to me because I rarely use the Taxonomy pages but I think it makes sense to be removed. It was put in there because this is a base theme that the original author used and that was a setting that he did with all his sites.

I just committed this change.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.