Forum
Formatting shop price
Hello,
what am i doing wrong, when formatting numbers in templates?
<perch:shop id="price" type="hidden" format="#:2|,| " />
"price" is 5490 and formats to 1.00
Thanks!
Hello,
what am i doing wrong, when formatting numbers in templates?
<perch:shop id="price" type="hidden" format="#:2|,| " />
"price" is 5490 and formats to 1.00
Thanks!
Price needs to be
type="shop_currency_value"
nottype="hidden"
I have that one - for the admin purposes - before, this tag was for the output. However, I wanted to get rid of the currency symbol just on this one page. Can't be done?
In which template is this, and which page function are you using to display it?
product.php
product.html -> here's the price tag
thanks!
You should be able to add
output="raw"
to the tag to get it unformatted, which will then let you format it.Hello Drew, no change :(
outputs
You still have
type="hidden"
. You need to usetype="shop_currency_value"
for the price.sweet! this is it:
Thank you! :)