Hi.
Can someone tell me how to show products with VAT inclusive prices? At the moment my emails for cart abandonment etc all show the price VAT free which is no good for the U.K.
Thank you
Simon
Hi.
Can someone tell me how to show products with VAT inclusive prices? At the moment my emails for cart abandonment etc all show the price VAT free which is no good for the U.K.
Thank you
Simon
Hi
If you want to show the quantity and total price for each product, navigate back to the column where the product title is present.
Type in “Quantity:” in the text box. Next, navigate to the preview window to find the event variable -- for example, {{ event.extra.line_items.0.quantity }}.
After exiting this window, paste the variable next to “Quantity,” replacing the collection and number with the alias.
For the total, use the line_price event variable (e.g., {{ event.extra.line_items.0.line_price }}), which will show the total price of a product based on the quantity. For instance, if you have a lipstick that costs $12, and someone has added two of them, the line price will show as $24.
As with the quantity, write in “Total:” and replace the collection with the alias. To display the currency, either add in the currency symbol before the brackets — for instance, ${{ item.line_price }} — or add % currency_format inside the brackets and before the event variable as well as another % before the closing brackets — for example, {% currency_format item.line_price %}. Note that the currency format tag cannot be used with the float format tag.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.