I have a couple of digital downloads that are free to all customers. I would like to collect the contact information of the customers that download these items therefore I have included it as a product within Actinic. I have set the price to £0.00 and all works fine.
I would like to advertise this product as "FREE" rather than just showing an absence of price. I am struggling to create and find the correct variables to create an IF statement.
Something like:
I would like to advertise this product as "FREE" rather than just showing an absence of price. I am struggling to create and find the correct variables to create an IF statement.
Something like:
Code:
<actinic:block if="Price==0">
<h3 class="free">FREE</h3>
</actinic:block>
<actinic:block if="Price>0">
<h3 class="price">
<actinic:block if="%3cactinic%3avariable%20name%3d%22PriceIsEnabled%22%20%2f%3e">
<Actinic:PRICES PROD_REF="<actinic:variable Name="ProductID" />" RETAIL_PRICE_PROMPT="<Actinic:Variable Name="ProductPriceDescription"/>"><actinic:variable name="PriceListRetail" /></Actinic:PRICES>
</actinic:block>
</h3>
</actinic:block>
Comment