NathanHarman Posted August 19, 2005 Share Posted August 19, 2005 How do I go about changing the title on the main store page that says, "Let's See What We Have Here!" Also the picture that shows up to the right of that saying. Thanks so much. Nathan Link to comment Share on other sites More sharing options...
Guest Posted August 19, 2005 Share Posted August 19, 2005 Includes/languages/english/index.php and line 291 in index.php (root) <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> Link to comment Share on other sites More sharing options...
COOLumbia Posted August 20, 2005 Share Posted August 20, 2005 How do I go about changing the title on the main store page that says, "Let's See What We Have Here!" This is a simple modification to display the category name in the product listing pages instead of the usual "Let's see what we have here". Open: /catalog/includes/languages/english/index.php Find: define('HEADING_TITLE', 'Let\'s See What We Have Here'); Change to: define('HEADING_TITLE', ucwords($categories['categories_name'])); Find: define('HEADING_TITLE', 'Categories'); Change to: define('HEADING_TITLE', ucwords($categories['categories_name'])); Original author: Chris Kirejevas at ckirejevas@yahoo.com Link to comment Share on other sites More sharing options...
COOLumbia Posted August 20, 2005 Share Posted August 20, 2005 Also the picture that shows up to the right of that saying. You can just delete the category image that you specified when you defined the category. (and be sure to set IMAGE REQUIRED to FALSE in Admin so you don't get a red X for the missing image). Link to comment Share on other sites More sharing options...
NathanHarman Posted August 22, 2005 Author Share Posted August 22, 2005 You can just delete the category image that you specified when you defined the category. (and be sure to set IMAGE REQUIRED to FALSE in Admin so you don't get a red X for the missing image). <{POST_SNAPBACK}> Thanks so much, worked like a charm. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.