Cart List
Tags, loops and template examples related to listing the customers own carts in Customer Center
Available tags
Ecom:CustomerCenter.Carts.BaseUrl
Returns the URL to the current template.
@GetString("Ecom:CustomerCenter.Carts.BaseUrl")
Ecom:CustomerCenter.Carts.BelongsToCurrentUser
Returns True if the cart belongs to current user.
@GetBoolean("Ecom:CustomerCenter.Carts.BelongsToCurrentUser")
Ecom:CustomerCenter.Carts.Count
Returns the number of carts per page in the cart list.
@GetInteger("Ecom:CustomerCenter.Carts.Count")
Ecom:CustomerCenter.Carts.EmptyList
Returns True if the list is empty.
@GetBoolean("Ecom:CustomerCenter.Carts.EmptyList")
Ecom:CustomerCenter.Carts.Paging.Show
Returns the display property for the paging functionality.
@GetString("Ecom:CustomerCenter.Carts.Paging.Show")
Ecom:CustomerCenter.ExcelExport
Returns the URL to an Excel export of the cart list.
@GetString("Ecom:CustomerCenter.ExcelExport")
Ecom:CustomerCenter.Paging.Back
Returns a back button.
@GetString("Ecom:CustomerCenter.Paging.Back")
Ecom:CustomerCenter.Paging.Back.URL
Returns an URL to the previous page with orders.
@GetString("Ecom:CustomerCenter.Paging.Back.URL")
Ecom:CustomerCenter.Paging.CurrentPage
Returns the current page number.
@GetInteger("Ecom:CustomerCenter.Paging.CurrentPage")
Ecom:CustomerCenter.Paging.Forward
Returns a forward button.
@GetString("Ecom:CustomerCenter.Paging.Forward")
Ecom:CustomerCenter.Paging.Forward.URL
Returns an URL to the next page with orders.
@GetString("Ecom:CustomerCenter.Paging.Forward.URL")
Ecom:CustomerCenter.Paging.HasPages
Returns the display property for the page index.
@GetString("Ecom:CustomerCenter.Paging.HasPages")
Ecom:CustomerCenter.Paging.NumPages
Returns the number of order list pages.
@GetInteger("Ecom:CustomerCenter.Paging.NumPages")
Ecom:CustomerCenter.Search
Returns the customer center search form.
@GetString("Ecom:CustomerCenter.Search")
Available loops
Carts
The Carts loop lets you display various information about user carts.
@foreach (LoopItem item in GetLoop("Carts")){ <p>@item.GetValue("TagName")</p> }
Ecom:CustomerCenter.Paging.Pages
The Ecom:CustomerCenter.Paging.Pages
loop lets you display a paging index.
@foreach (LoopItem item in GetLoop("Ecom:CustomerCenter.Paging.Pages")){ <p>@item.GetValue("TagName")</p> }