Ecom:Product:ConditionReward.Points

Version: 9.6.0 double  

Summary

Returns amount of points.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("Ecom:Product:ConditionReward.Points")

Check if tag has a value

@if(!double.IsNullOrWhiteSpace(GetDouble("Ecom:Product:ConditionReward.Points"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:Product:ConditionReward.Points"); }

Outputting the template tag

<!--@Ecom:Product:ConditionReward.Points-->

Check if double has a value

<!--@If Defined(@Ecom:Product:ConditionReward.Points)--> Let's output this tag here: <strong><!--@Ecom:Product:ConditionReward.Points--></strong> <!--@EndIf(@Ecom:Product:ConditionReward.Points)-->