Is there a way to have the product link during checkout link directly to the extended info page for that product?
Announcement
Collapse
No announcement yet.
extended info link from checkout
Collapse
X
-
Bruce King, Mole End Software Support
Integrated label paper for Actinic A4 Paper with one or two peel off labels.
One Stop Automation Automate Actinic. Mole End Automation works while you play.
Mole End Product Mash for Actinic A suite of marketing feeds for your Actinic Store
Actinic Upgrade and Design Service
-
Those links all reference the continue shopping button, not the product links that are in the cart. Got it working with javascript:
<script type="text/javascript">
<!--
myProductRef = '<actinic:variable name="ProdRef" />';
myProductName = '<actinic:variable name="ProductNameOnline" />';
myProductName = myProductName.replace(/<A HREF="http:\/\/.*">/g, "");
myProductName = myProductName.replace(/<A HREF="https:\/\/.*">/g, "");
myProductName = myProductName.replace(/<\/A>/g, "");
document.writeln('<a href="http://www.mysite.com/acatalog/info_'+myProductRef+'.html">'+myProductName+'</a>');
-->
</script>
Comment
Comment