Ecom:Order.Shipping.Taxes.Provider

Version: - string  

Summary

Returns the name of the tax provider that adds tax to the shipping fee.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Order.Shipping.Taxes.Provider")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order.Shipping.Taxes.Provider"); }

Outputting the template tag

<!--@Ecom:Order.Shipping.Taxes.Provider-->

Check if string has a value

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