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