Ecom:Cart.Paymethod.Name

Version: - string  

Summary

Returns the name of the payment method.

Settings

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

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

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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