Ecom:Product:Reward.Points

Version: 9.6.0 double  

Summary

Returns amount of point the reward applied will be received on the product buying. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if double has a value

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