Ecom:Order.OrderLines.TotalQuantity

Version: - integer  

Summary

Returns the total count of items in the current order.

Settings

The value is generated automatically.

Remarks

The number is based on all order lines in the cart including sales discount lines and tax lines. If you do not want to include the sales discount you can use one of the product count tags below.

Examples

Outputting the template tag

@GetInteger("Ecom:Order.OrderLines.TotalQuantity")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("Ecom:Order.OrderLines.TotalQuantity"); }

Outputting the template tag

<!--@Ecom:Order.OrderLines.TotalQuantity-->

Check if integer has a value

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