Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Changing - "Let's See What We Have Here!"


NathanHarman

Recommended Posts

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

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...