Ecom:Product:ConditionReward.TotalPoints

Version: 9.6.0 double  

Summary

Returns amount of total points.

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if double has a value

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