Announcement

Collapse
No announcement yet.

Cart Contents on non actinic pages

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

    Cart Contents on non actinic pages

    Is it possible to show the cart contents (order value & quantity), on pages that are not part of actinic, or in the acatalog folder. For example we have regular php information pages, which we would like to show the customers cart contents in the right hand menu bar.

    So if a visitor added products within our actinic store, and then started to browse our non actinic pages (that are not in the acatalog folder), is there a way to keep displaying their cart contents.

    Thanks.
    Mark

    #2
    Try putting a simple bit of code temporarily on these pages that will display the cookies. See if that contains the cart.

    E.g. (untested)

    <script type="text/javascript">
    document.write(document.cookie);
    </script>

    If you see the data you want, then include acatalog/actiniccore.js and /acatalog/actinicextras.js (or just the cookie handling routines from them) on your pages and you should be able to display the contents using the same bit of code that's in your V7 Act_Primary.html.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X