Ecom:Product.ActualPriceWithVATWithTaxes

Version: 9.10.0 string  

Summary

Returns the product price with VAT, taxes and discounts.

Settings

The value is based on the input fields on the Prices tab for a product.

(Ecommerce > Product Catalog > Shop > Product group > Product > Prices tab)

Examples

Outputting the template tag

@GetString("Ecom:Product.ActualPriceWithVATWithTaxes")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Product.ActualPriceWithVATWithTaxes"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.ActualPriceWithVATWithTaxes"); }

Outputting the template tag

<!--@Ecom:Product.ActualPriceWithVATWithTaxes-->

Check if string has a value

<!--@If Defined(@Ecom:Product.ActualPriceWithVATWithTaxes)--> Let's output this tag here: <strong><!--@Ecom:Product.ActualPriceWithVATWithTaxes--></strong> <!--@EndIf(@Ecom:Product.ActualPriceWithVATWithTaxes)-->