QuickPayPaymentWindow.payment_methods
Version: - stringSummary
Returns payment methods can be used in the transaction.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("QuickPayPaymentWindow.payment_methods")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.payment_methods"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPayPaymentWindow.payment_methods");
}
Outputting the template tag
<!--@QuickPayPaymentWindow.payment_methods-->
Check if string has a value
<!--@If Defined(@QuickPayPaymentWindow.payment_methods)-->
Let's output this tag here: <strong><!--@QuickPayPaymentWindow.payment_methods--></strong>
<!--@EndIf(@QuickPayPaymentWindow.payment_methods)-->