Ecom:Order.TotalPriceWithoutDiscountsFeesAndTaxes

Version: 9.6.0 price  

Summary

Returns the total order price excl. discounts, fees and taxes.

Settings

The value is generated automatically.

Remarks

Includes the option to add price extensions in order to format the price. See Price extensions (Prefix : Ecom:Order.TotalPriceWithoutDiscountsFeesAndTaxes).

Examples

Outputting the template tag

@GetPrice("Ecom:Order.TotalPriceWithoutDiscountsFeesAndTaxes")

Check if tag has a value

@if(!double.IsNullOrWhiteSpace(GetPrice("Ecom:Order.TotalPriceWithoutDiscountsFeesAndTaxes"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ double storedTag = GetPrice("Ecom:Order.TotalPriceWithoutDiscountsFeesAndTaxes"); }

Outputting the template tag

<!--@Ecom:Order.TotalPriceWithoutDiscountsFeesAndTaxes-->

Check if price has a value

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