Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove "for more info"..


jasone

Recommended Posts

Hi!

Where do I remove "For more information, please visit this products webpage." I?d guess in the product_info.php but can?t find out what to comment out...

 

I tried to put a: # in front of every line of the code underneath, but it didn?t work (error in code)

 

Thanks for help!

 

?>
     <tr>
       <td class="main"><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></td>
     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
<?php

Link to comment
Share on other sites

The easiest way is to find this code:

if (tep_not_null($product_info['products_url'])) {

and change it to this:

if (false) {

This will stop the output...

 

Bobby

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...