Announcement

Collapse
No announcement yet.

extended info link from checkout

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    extended info link from checkout

    Is there a way to have the product link during checkout link directly to the extended info page for that product?

    #2
    A search on the forum produced http://community.actinic.com/showthread.php?t=28017

    Kind regards,
    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

    Comment


      #3
      BOOM BruceShot!

      Comment


        #4
        Originally posted by gabrielcrowe View Post
        BOOM BruceShot!
        It must the good weather - I see he's got his colour back now.

        Comment


          #5
          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

          Working...
          X