Announcement

Collapse
No announcement yet.

Product Price Variable

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Product Price Variable

    OK well basicly this is a quick one, I am using the <actinic:variable name="ProductPriceRaw" selectable="false" /> Variable and on the products where the price is £5.00 it isnt displaying the .00 I was wondering if anyone knows a way I can make all 4 symbols appear, as the single number is effecting some of my formulas, this is what I have so far

    http://www.actinictesting.co.uk/acatalog/Books.html

    login password is "Leet"
    www.simonstaton.co.uk

    #2
    this will display what you want

    Code:
    <actinic:block php="true">echo "£", number_format(<actinic:variable name="ProductPriceRaw" selectable="false" />,2);</actinic:block>
    But what do you mean by all 4 symbols, and what formulas? Using productpriceraw shouldn't effect your calculations
    "If my answers frighten you then you should cease asking scary questions"

    Comment

    Working...
    X