Guest Posted August 8, 2008 Share Posted August 8, 2008 I am having real trouble with the headings titles. On each page it says HEADING_TITLE I need it to say my categories, i.e. birthday cards, wedding cards. Where and what do I change to do this please. Site nearly ready to go so I need to fix this quickly. http://casandras.co.uk/catalog/index.php?cPath=2 Link to comment Share on other sites More sharing options...
spooks Posted August 8, 2008 Share Posted August 8, 2008 In catalog/index.php find (3 instances): <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> replace all with <td class="pageHeading"><?php echo ($category['categories_name'] ? $category['categories_name'] : HEADING_TITLE); ?></td> Or there a meta solution. Sam Remember, What you think I ment may not be what I thought I ment when I said it. Contributions: Auto Backup your Database, Easy way Multi Images with Fancy Pop-ups, Easy way Products in columns with multi buy etc etc Disable any Category or Product, Easy way Secure & Improve your account pages et al. Link to comment Share on other sites More sharing options...
Guest Posted August 8, 2008 Share Posted August 8, 2008 Hi Sam, sorry but it did not work, any other ideas? I want to go live tomorrow and it is getting to me Link to comment Share on other sites More sharing options...
kelvind Posted September 4, 2008 Share Posted September 4, 2008 Anyone figure this out? I'm also looking to do the same thing. Link to comment Share on other sites More sharing options...
♥FIMBLE Posted September 4, 2008 Share Posted September 4, 2008 Its working ok on your site, i can see it fine Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
kelvind Posted September 4, 2008 Share Posted September 4, 2008 Its working ok on your site, i can see it fineNic Mine is http://shop.raucous.ca/index.php When I click on the 2 categories on the left (or one of the sub categories) I want the text of the category to come up next to the image I have displayed there, if that makes sense. Thanks! Link to comment Share on other sites More sharing options...
♥FIMBLE Posted September 4, 2008 Share Posted September 4, 2008 Yours is different to Casandras then. /includes/languages/english/index.php Change this: define('HEADING_TITLE', 'Let\'s See What We Have Here'); To this: $category_name = (isset($HTTP_GET_VARS['manufacturers_id'])) ? $manufacturers['manufacturers_name'] : $categories['categories_name']; define('HEADING_TITLE', $category_name); Change this: define('HEADING_TITLE', 'Categories'); To this: define('HEADING_TITLE', $categories['categories_name']); Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
kelvind Posted September 4, 2008 Share Posted September 4, 2008 Ah thank you, I've been looking for this for days. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.