Ecom:CustomerCenter.List.TotalProductsQuantity

Version: - integer  

Summary

Returns the total quantity of products in the list.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Ecom:CustomerCenter.List.TotalProductsQuantity")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Ecom:CustomerCenter.List.TotalProductsQuantity"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Ecom:CustomerCenter.List.TotalProductsQuantity"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.List.TotalProductsQuantity-->

Check if integer has a value

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