Ecom:Cart.Paymethod.Icon

Version: - string  

Summary

Returns the icon for the payment method.

Settings

The value is based on the Icon input field under the Payment settings.

(Management Center - eCommerce settings > Orders > Payment > Payment method > General tab - Icon)

Remarks

The value is returned as a HTML code snippet containing an <img> tag.

Examples

Outputting the template tag

@GetString("Ecom:Cart.Paymethod.Icon")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Cart.Paymethod.Icon"); }

Outputting the template tag

<!--@Ecom:Cart.Paymethod.Icon-->

Check if string has a value

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