Closed (fixed)
Project:
Blueprint
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
17 May 2010 at 02:16 UTC
Updated:
1 Jun 2010 at 18:40 UTC
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
Comment #1
designerbrent commentedThanks 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.