Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

A Question on Terminology


lordofcb

Recommended Posts

Posted

This may be terminology related more than anything else. I am looking to replace the 'What's New Here?' text (or remove it) and in place put an image to display on the page before the text line about the store I replaced per instructions. I have also removed the display of new items on the main page. Is this mostly black area of the main screen defined as a box? I have been looking through the files and am unsure of where I would insert this image or make other changes to that area of the page.

Posted
I am looking to replace the 'What's New Here?' text (or remove it) and in place put an image to display on the page

Open /includes/languages/english/index.php and replace this:

 

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

 

with this:

 

define('HEADING_TITLE', '<ing src="yourimagename.gif" border="0">');

 

To remove the New Products from the main homepage you just need to remove/comment out this code from /index.php

 

<tr>

<td><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td>

</tr>

 

It shouldn't leave a black box in it's place.

Archived

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

×
×
  • Create New...