Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to disable information request link below product dropdown boxes


global provision

Recommended Posts

Posted

I have recently added some new products and put them on special. I now have a request link "For more information, please visit this products webpage.",only on these recently added products below the dropdown boxes.

 

This link request is not on the previous products just the recently added products.

 

I don't think I had done anyhing differently, but want to disable the request link. Where do I go to do this, I can not find this.

 

Thanks, CZ

Posted

Check in the admin to make sure you did not add a product url.

here is the code in catelog/product_info.php that calls for the link but only if one was entered

<?php
}

if (tep_not_null($product_info['products_url'])) {
?>
  <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
}

If you just wanted to delete it then delete all except the final <?php including the } at the end

My Contributions

 

Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly

Password Protect Admin

"No matter where you go....There you are" - Buccaroo Bonsai

Posted

Thank You. Your instructions worked perfect. I just wished that I knew what I did to have created that result. I am pretty careful of what I do in the web shell, guess I just need to be more careful. Thanks a million!!

Archived

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

×
×
  • Create New...