Hello,

The website we are building is setup in this fashion with categories / taxonomy

Home
-/taxonomy/term/ID
--/taxonomy/term/ID/ContentType

So we are using a single vocabulary list and then from each taxonomy page, users can further navigate down and view a page with a specific content type of that taxonomy term.

I have Page Title module installed and it works well, but my taxonomy and taxonomy/type pages are using not very descriptive titles of just "taxonomy term".

So how do I make unique title tags for each term, and for each term/type page?

This would be a great format

/taxonomy/term/ID
Title: "Unique title tag based on a string I specify"

/taxonomy/term/ID/ContentType
Title: "Content Type: Unique title tag based on a string I specify"

Comments

gav240z’s picture

Just wondering if you found a solution to this?
I would also like to customise the title and meta description for taxonomy terms.

Any idea if there is an SEO pack for Drupal like there is for Wordpress?

JeremyL’s picture

I found Title Rewrite Module

http://drupal.org/project/title_rewrite

I mixed that along with some custom PHP coding in the view. The Module gave me the custom Title Tag and the view php code gave me custom H1 page title.

<?php
$name = drupal_get_title();

$title_array['TaxTerm'] = "H1 Title goes Here";

drupal_set_title($title_array[$name]);
?>
Rob T’s picture

This came in handy. Thanks!