Archive for the ‘Ubercart’ Category
Updating Price PHP print statements in Ubercart
Recently, I updated an Ubercart shopping cart system on Drupal that was very out of date.
After the upgrade, the list price on the product pages had too many zeros. It looked like this.
MSRP $ 49.99000
After a bit of research, I learned that Ubercart has been updated to include more decimal places to accommodate more International currencies.
I took a look at the node-product.tpl.php template and found that the print statement for the list price was using the out of date print statement.
The old print statement looked like:
list_price ?>
The new print statement looks like this:
list_price); ?>
Now all is fine.
MSRP $ 49.99