QuickPayPaymentWindow.google_analytics_tracking_id

Version: - string  

Summary

Returns current text of Google analytics tracking id field in the payment gateway settings.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("QuickPayPaymentWindow.google_analytics_tracking_id")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("QuickPayPaymentWindow.google_analytics_tracking_id"); }

Outputting the template tag

<!--@QuickPayPaymentWindow.google_analytics_tracking_id-->

Check if string has a value

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