Ecom:StockLocation.Name

Version: - string  

Summary

Returns the name of the stock location.

Settings

The value is based on the Stock location field for the stock location selected in Stock for the product.

(Ecommerce > Product catalog > Shop > Group > Product > Stock > Edit stock info > Name)

Remarks

Stock locations are created in Management center > Ecommerce > Product catalog > Stock location.

Examples

Outputting the template tag

@GetString("Ecom:StockLocation.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:StockLocation.Name"); }

Outputting the template tag

<!--@Ecom:StockLocation.Name-->

Check if string has a value

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