Ecom:Product.RemoveProductFromList

Version: - string  

Summary

Returns a link URL for removing the product from a customer center list (My lists).

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Product.RemoveProductFromList")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Product.RemoveProductFromList"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.RemoveProductFromList"); }

Outputting the template tag

<!--@Ecom:Product.RemoveProductFromList-->

Check if string has a value

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