I have tried a lot of tricks to get this to show.
Following the Actinic advanced users guide instructions, putting this code in
<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)
{
document.write("s");
}
document.write("<br>at a cost of " + getCartItem(1));
}
</script>
</span>
doesn't work for me as this only shows when the customer is in the checkout pages anyhow but not when they are in the catalogue. What else can I do please? It says to put that in any main page and I put it in ACtinic Primary and also tried the product pages for that, without any success. Please help me with this.
Following the Actinic advanced users guide instructions, putting this code in
<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)
{
document.write("s");
}
document.write("<br>at a cost of " + getCartItem(1));
}
</script>
</span>
doesn't work for me as this only shows when the customer is in the checkout pages anyhow but not when they are in the catalogue. What else can I do please? It says to put that in any main page and I put it in ACtinic Primary and also tried the product pages for that, without any success. Please help me with this.
Comment