Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I change the "What's New Here?" on index page?


DreamStars

Recommended Posts

I've been looking everywhere through files for where to change the top text on the index page that says "What's New Here?" located at http://www.dreamstars.com/catalog/ . I found where to change everything below that line but not that, nor the similar text headings on other pages. Can anyone point me to the right place?

 

KT

 

DreamStars Home Decor and Gifts

http://www.dreamstars.com

Link to comment
Share on other sites

I've been looking everywhere through files for where to change the top text on the index page that says "What's New Here?" located at http://www.dreamstars.com/catalog/ . I found where to change everything below that line but not that, nor the similar text headings on other pages. Can anyone point me to the right place?

 

KT

 

DreamStars Home Decor and Gifts

http://www.dreamstars.com

 

I am pretty positive it has something to do with HEADING_TITLE which is found in this section of index.php

<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">

<tr>

<td><table border="0" width="100%" cellspacing="0" cellpadding="0">

<tr>

<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

<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>

</tr>

Link to comment
Share on other sites

ok... after HOURS and HOURS of telephone support with my favorite tech (oh my poor ear!), here is the solution to the problem just in case anyone else needed the answer to the same thing.

 

To change what it says on the top of the index page you simply go to catalog/includes/languages/index.php and change the following code:

define('HEADING_TITLE', 'What\'s New Here');

 

to read

define('HEADING_TITLE', 'Whatever you wanted your index page title to say goes here between the single quotes');

 

make sure you use a \ before any apostrophes so it will come out right.

 

Next, to change what it says on the product pages when you click any product category find the following text also in catalog/includes/languages/index.php and change the following code:

define('HEADING_TITLE', 'Let\'s See What We Have Here');

and change it to:

define('HEADING_TITLE', 'Whatever you wanted your product category page to say goes here between the single quotes');

 

To change the page titles on the Reviews (reviews.php), Shopping Cart (shopping_cart.php), Specials (specials.php), and What's New (products_new.php) pages you should go to each of those respective php files in catalog/includes/languages/ folder and find the define('HEADING_TITLE', ''); and change the text between the single quotes to customize your pages.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...