Hi all,
Slightly unusual feature/support request.

The module is working perfectly, and the pattern rules are evaluated nicely.

Where the 'page title' is overridden on the node edit page, it replaces the default node title.

Is is possible that any customised page title would replace the entire 'title tag', overriding all rules for that node-type.

Ie
Page title Rules are evaluated normally, but where the 'page title' is customised on a node page,
it become the entire 'title tag' for that node page.

The idea is that the title tag can be customised fully for any node page.

If this requires some coding or themeing, as I anticipate it might, any pointers would be appreciated.

Regards
Alan

Comments

alanburke’s picture

Hi ,
In case anybody stumbles across this, I found a simple way to override this at the theme level.
If your template.php, in theme_preprocess_page, you can override the variable 'head_title'.

In my case, I want to use the customised page title in the node edit page to override the whole page_title, [where it has been customised].
Otherwise, when it isn't customised, I retain the page_title rules.

$customised_title = page_title_node_get_title($vars['node']->nid); 
 if($customised_title) { $vars['head_title'] = $customised_title; } 
alanburke’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

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