Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

View Website for more info


Guest

Recommended Posts

I see when inputting products, I can input an address of the products web page, but it doesn't show on the products ecommerce page. i cannot seem to find the option to allow it, anyone know where that is?

 

Thanks!

Brent

Link to comment
Share on other sites

The link to the product's external website is missing from the code for osC 2.3.1. You will need to modify product_info.php to show it.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

Thanks!

Is there a link on showing how do to this? I'm not coming up with anything in search.

Thanks again.

Link to comment
Share on other sites

There may be an Addon to do this. If not, the code from 2.2RC2a should work, with a few minor mods:

<?php
   if (tep_not_null($product_info['products_url'])) {
?>
     <div><?php echo sprintf(TEXT_MORE_INFORMATION, tep_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($product_info['products_url']), 'NONSSL', true, false)); ?></div>
<?php
   }
?>

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...