Saved card list
Tags, loops and template examples related to displaying a list of saved credit cards in the Customer Center.
Available tags
Ecom:CustomerCenter.Paging.PageClass
Returns a CSS class for the page link.
RAZOR
@GetString("Ecom:CustomerCenter.Paging.PageClass")
Ecom:CustomerCenter.Paging.PageIndex
Returns the page index number of the current page.
RAZOR
@GetString("Ecom:CustomerCenter.Paging.PageIndex")
Ecom:CustomerCenter.Paging.PageIndexUrl
Returns an URL to the current page in the index.
RAZOR
@GetString("Ecom:CustomerCenter.Paging.PageIndexUrl")
Ecom:CustomerCenter.SavedCards.BaseUrl
Returns base URL in the saved card.
RAZOR
@GetString("Ecom:CustomerCenter.SavedCards.BaseUrl")
Ecom:CustomerCenter.SavedCards.Count
Returns count of the saved cards.
RAZOR
@GetString("Ecom:CustomerCenter.SavedCards.Count")
Ecom:CustomerCenter.SavedCards.EmptyList
Returns True if paging in saved card list can be shown.
RAZOR
@GetString("Ecom:CustomerCenter.SavedCards.EmptyList")
Available loops
SavedCards
The SavedCards
loop lets you display various information about saved card.
RAZOR
@foreach (LoopItem item in GetLoop("SavedCards")){ <p>@item.GetValue("TagName")</p> }