Hi,
I am trying to get a summary of the shopping cart to appear on the pages in our catalog. I have searched through the community for help on this and followed the instructions on page 31/32 of the Advanced User Guide, but do not seem to be getting any results. I have added the text below to my Act_Primary.html, template but am not sure if was the right thing to do.
<SCRIPT LANGUAGE="JavaScript" SRC="actinicextras.js" TYPE="text/javascript"></SCRIPT>
<span class="actxxsmall">
<script language="JavaScript">
if (getCartItem(3) < 1)
{
document.write("Your cart is empty")
}
else
{
document.write("You have ordered ")
document.write(getCartItem(3) + " item");
if (getCartItem(3) >1)
{
documment.write("s");
}
document.write("<br> at a cost of " + getCartItem(1));
}
</script>
</span>
Although I've been using Actinic for a couple of years now I am sorry to admit that I have real trouble getting to grips with the templates in Actinic. I really need to get my head round them though as we need to improve the layout and design of our site! So any advice would be much appreciated.
Tanya
www.lochnessorigins.com
I am trying to get a summary of the shopping cart to appear on the pages in our catalog. I have searched through the community for help on this and followed the instructions on page 31/32 of the Advanced User Guide, but do not seem to be getting any results. I have added the text below to my Act_Primary.html, template but am not sure if was the right thing to do.
<SCRIPT LANGUAGE="JavaScript" SRC="actinicextras.js" TYPE="text/javascript"></SCRIPT>
<span class="actxxsmall">
<script language="JavaScript">
if (getCartItem(3) < 1)
{
document.write("Your cart is empty")
}
else
{
document.write("You have ordered ")
document.write(getCartItem(3) + " item");
if (getCartItem(3) >1)
{
documment.write("s");
}
document.write("<br> at a cost of " + getCartItem(1));
}
</script>
</span>
Although I've been using Actinic for a couple of years now I am sorry to admit that I have real trouble getting to grips with the templates in Actinic. I really need to get my head round them though as we need to improve the layout and design of our site! So any advice would be much appreciated.
Tanya
www.lochnessorigins.com
Comment