I want to replace it with colons or something else, but I can't find it. It's not in the page.tpl.php or node.tpl.php.

Comments

vincent-liew’s picture

Hi,
This required some tweaking of the drupal source code, do this carefully, always backup your stuff before any tweaking of Drupal source code.

For Drupal 5.x
Go to themes/engines/phptemplate/phptemplate.engine
Look for implode(' | ', $head_title),
Replace the '|' with whatever character you want,

For Drupal 6.x
Go to includes/theme.maintenance.inc
Look for implode(' | ', $head_title),
Replace the '|' with whatever character you want,

I never try colons, if colons doesn't work, try something else
Again, do this carefully, always backup your stuff!

Choong Hoong Liew

patbranch’s picture

Thanks!!

vincent-liew’s picture

Hi,
In addition to modifying the drupal source code, try the page title module
http://drupal.org/project/page_title
This is an awesome module for page title manipulation.

Regards,
Choong Hoong Liew

patbranch’s picture

Yeah, that's what I was trying to use initially but it wasn't working. I had the template code in the wrong section, but now it works!