Hello Norman,
I am trying to customise the appearance of the shopping cart, or to even replace with an image and have the same functions, but I can't work out if this is done on the Actinic end or the Norcat end. Any ideas?
Thanks,
- Greg
Shopping Cart customisation
Shopping cart
Hello there, I meant how the shopping cart actually appears on the page - I'm having a little trouble in working out how to edit, or replace with an image.
Cheers,
- Greg
Cheers,
- Greg
Add to cart box
Hello there, on my product pages (see http://s120997931.websitehome.co.uk/aca ... THING.html) there is a box which lists 'items' and 'value' - I consider this the browsing 'cart' as opposed to the actual shopping cart page. This is the element I'm trying to modify, but I can't work out where the code is generated. Any ideas?
Got you now (too many things called Cart). That's a standard Actinic feature and generated in Act_Primary.html by code that varies somewhat depending on Theme and customisation. Here's the one from the Best Seller themeand is probably somewhat different on your site. Just search Act_Primary.html for "getCartItem" and you'll locate it.
Code: Select all
<tr>
<td height="25" background="cart_bg.gif"><font color="NETQUOTEVAR:PALBGCSS" size="1"><strong>
<script language="JavaScript">
<!--
document.write("NETQUOTEVAR:CARTCOOKIEITEMS " + getCartItem(3)+" ");
document.write("NETQUOTEVAR:CARTCOOKIEVALUE " + getCartItem(1));
// -->
</script>
</strong></font>
</td>
</tr>
Norman