Ecom:StockLocation.Weight

Version: - double  

Summary

Returns the weight of the stock unit.

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

@GetDouble("Ecom:StockLocation.Weight")

Check if tag has a value

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

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:StockLocation.Weight"); }

Outputting the template tag

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

Check if double has a value

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