Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How an earth do i do this????


muhsinb

Recommended Posts

Posted

On the page where it lists your different products for a category, below where it says "Displaying 1 to x (of x products) , i'd like to add abit of code to say something like "if you can't find what your looking for email me" .

 

I've been looking around for a while now all to no avail :(

 

Help please!

Posted

Open /includes/languages/english.php, look for:

 

define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> products)');

 

Change to:

 

define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> products)<br>If if you can't find what your looking for email me');

 

OR

 

Open /includes/modules/product_listing.php, look for

 

<td class="smallText"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></td>

 

Change to:

 

<td class="smallText"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?><br>If if you can't find what your looking for email me</td>

Archived

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

×
×
  • Create New...