I am just wondering how I can display a custom product field like a currency if at all possible.
We actually have three prices for some of our products and I am using a custom product field for the third price. I already am using the cost and price field. Sometimes it gets import like 91.5. I would love for it to display properly without having to go in and fix it each time.
Here is the code I current use to display this:
Any ideas how this might be done?
We actually have three prices for some of our products and I am using a custom product field for the third price. I already am using the cost and price field. Sometimes it gets import like 91.5. I would love for it to display properly without having to go in and fix it each time.
Here is the code I current use to display this:
Code:
<mvt:if expr="NOT ISNULL l.settings:product:customfield_values:customfields:SLPrice">
<div class="custom-field" id="customfields-SLPrice">&mvt:customfield_names:customfields:SLPrice;: <span class="bold">$&mvt:product:customfield_values:customfields:SLPrice;</span></div>
</mvt:if>
Comment