muhsinb Posted April 6, 2007 Posted April 6, 2007 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!
zhexiang Posted April 6, 2007 Posted April 6, 2007 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>
muhsinb Posted April 6, 2007 Author Posted April 6, 2007 Ha ha ... its easy when you know how eh! Your a star buddy. Thanks :thumbsup:
Recommended Posts
Archived
This topic is now archived and is closed to further replies.