ADD ITEM

(This is using custom database storage)

ADD CONDITIONS

CART

ID Name Qty Price Action
{{ item.id }} {{ item.name }} {{ item.quantity }} {{ item.price }}
Items on Cart: {{itemCount}}
Total Qty: {{ details.total_quantity }}
Sub Total: {{ '$' + details.sub_total.toFixed(2) }} ({{details.cart_sub_total_conditions_count}} conditions applied)
Total: {{ '$' + details.total.toFixed(2) }} ({{details.cart_total_conditions_count}} conditions applied)

ADD WISHLIST ITEM

(This is using default session storage)

WISHLIST

ID Name Qty Price Action
{{ item.id }} {{ item.name }} {{ item.quantity }} {{ item.price }}
Items on Cart: {{itemCount}}
Total Qty: {{ details.total_quantity }}
Sub Total: {{ '$' + details.sub_total.toFixed(2) }}
Total: {{ '$' + details.total.toFixed(2) }}