davidfel Posted April 3, 2006 Posted April 3, 2006 Sure this is simple, but I'm going round in circles trying to find it. How do I remove/customise page heading text such as 'What's New Here?' and 'Let's See What We Have Here' that appear at the top of pages? David
jasonabc Posted April 3, 2006 Posted April 3, 2006 the apostrophe's in these strings are escaped in PHP which is why you are having trouble finding them. Try searching for these strings: What\'s New Here and Let\'s See What We Have Here You can either delete them or insert your own text. Jason My Contributions: Paypal Payflow PRO | Rollover Category Images | Authorize.net Invoice Number Fix
spax Posted April 3, 2006 Posted April 3, 2006 If you can't find these passages: 'What's New Here?' is in catalog/includes/languages/english.php on line 79 'Let's See What We Have Here' is in catalog/includes/languages/english/index.php on line 19 Like Jason said, if you are using apostrophes, remember to escape them. \'
davidfel Posted April 3, 2006 Author Posted April 3, 2006 If you can't find these passages: 'What's New Here?' is in catalog/includes/languages/english.php on line 79 'Let's See What We Have Here' is in catalog/includes/languages/english/index.php on line 19 Like Jason said, if you are using apostrophes, remember to escape them. \'
davidfel Posted April 3, 2006 Author Posted April 3, 2006 Thanks for help I found both text strings and changed them BUT the 'What\'s New Here' stubbonly refuses to go! I've saved it and FTP'd it up several times to no avail. Its on the main entry page so I need to remove it but just can't do it!! Any other ideas? David
jasonabc Posted April 3, 2006 Posted April 3, 2006 you sure you changed this: define('HEADING_TITLE', 'What\'s New Here?'); in /includes/languages/english/index.php? That's where the What's New Here is written out to the homepage. Jason My Contributions: Paypal Payflow PRO | Rollover Category Images | Authorize.net Invoice Number Fix
spax Posted April 3, 2006 Posted April 3, 2006 Thats probably my fault. :-" Where I said: catalog/includes/languages/english.php on line 79 That is for the box heading It should be: catalog/includes/languages/english/index.php on line 37 Sorry!! :blush:
davidfel Posted April 4, 2006 Author Posted April 4, 2006 Problem solved I now have a proper header It was on line 37 - problem was I didn't have a line 37! I cut and pasted the define text into kine 37 and hey presto! Very strange. Thanks folks that was cool
Recommended Posts
Archived
This topic is now archived and is closed to further replies.