3 replies [Last post]
silentph03nix's picture
Offline
Joined: 03/07/2009
Juice: 18
Was this information Helpful?

Ok, first off, I admit that I made a change when I first setup the site and I don't remember what I changed. The node title that should change with each page only displays the word Catalog. For example, when you go to Administer, it should change to Administer but it still says Catalog. It does appear to only happen with themes that use the theme settings api. I've changed the theme to garland and it changes correctly. But, when I use pixture, wabi, or twilight, I get the behaviour. I've checked in the theme .php files and I don't see anything that looks incorrect. I've even removed the pixture theme directory and put it back and the behaviour persists. I'm thinking it has to be in the database. I'd appreciate any help anyone can give me to fix this behaviour. I've attached a screenshot of the administer screen with the title catalog showing at the top.

PreviewAttachmentSize
website.pngwebsite.png332.92 KB
tcindie@drupal.org's picture
Offline
Getting busy with the Ubercode.
Joined: 05/15/2008
Juice: 440
Re: Problem with node title

Have you tried switching themes just to determine for certain that it's not a theme issue?

This certainly seems like it could only be caused by a theme issue to me.

Follow me on twitter.

silentph03nix's picture
Offline
Joined: 03/07/2009
Juice: 18
Re: Re: Problem with node title

Yes, I've changed themes. The title changes as expected with any of the built-in themes. With any theme that uses the theme settings api seem to have the problem. Wabi, pixture, and twilight all display the same behavior which leads me to believe it has to be in either a common template file, or in the database somewhere.

silentph03nix's picture
Offline
Joined: 03/07/2009
Juice: 18
Re: Re: Re: Problem with node title

I got a tip on drupal.org:

It seems like somewhere the pagetitle has been set as 'catalog'. You can override this one from template.php. use the funtion _phptemplate_variables($vars)...Then you can set your custom page title as $vars['title'] = "title"

This made the bar what I set the title to above everywhere but the front page. How do I make the change for the front page? That's probably where I made the change initially that is causing the underlying problem.