Ecom:Product.Prices.AmountFormatted

Version: - string  

Summary

Returns the formatted product price from the price matrix.

Settings

The value is based on the Price field for the product in the price matrix.

(Ecommerce - Product catalog - Shop - Product - Prices - Price)

Examples

Outputting the template tag

@GetString("Ecom:Product.Prices.AmountFormatted")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product.Prices.AmountFormatted-->

Check if string has a value

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