Ecom:Product:Stock.Text

Version: - string  

Summary

Returns the text/label of the stock status.

Settings

The value is based on Stock status selection for the product and the Text/label field for the stock state.

(Management Center - Ecommerce - Orders - Stock state - Stock state - Status)

Examples

Outputting the template tag

@GetString("Ecom:Product:Stock.Text")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product:Stock.Text-->

Check if string has a value

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