Ecom:Order.Recurring.Interval

Version: - string  

Summary

Returns the recurring interval, e.g if 1 it is each day/week/month.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Order.Recurring.Interval")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order.Recurring.Interval"); }

Outputting the template tag

<!--@Ecom:Order.Recurring.Interval-->

Check if string has a value

<!--@If Defined(@Ecom:Order.Recurring.Interval)--> Let's output this tag here: <strong><!--@Ecom:Order.Recurring.Interval--></strong> <!--@EndIf(@Ecom:Order.Recurring.Interval)-->