Announcement

Collapse
No announcement yet.

Shopping cart summary

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

    Shopping cart summary

    Hello

    Is it possible....

    Can I show the following in my cart?

    Product
    Qty
    Price
    Cost
    Remove

    where the Price and Cost are totals a customer will pay (the same as displayed in the product table).

    Can I then show in the checkout, the above information (less Remove) and also a summary with the following

    Total number of items
    Total before VAT
    VAT
    Order total

    where the figures are broken down

    The way it works at the moment it creates confusion for the customer, although i know that I need to make the customer aware of how much they are paying.

    Thanks
    Steven

    #2
    Actinic uses the same template for the cart table in the 'view cart' page and and the cart in the checkout - so there is no way to differentiate them I'm afraid.

    You can use

    <script language="JavaScript">document.write(getCartItem(3));</script>

    whenever you need to include the total number of items into the HTML.

    Comment

    Working...
    X