Ecom:Product.ActualPriceWithoutVATWithTaxes

Version: - string  

Summary

Returns the product price excl. VAT, but incl-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.ActualPriceWithoutVATWithTaxes")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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