Anyone know how to add a virtuemart 3 quantity range pricing table??? :o
Ther answer is on this board, just two threads down!! http://forum.virtuemart.net/index.php?topic=129528.0
Fantastic.
In Category I used:
<div class="price-table">
<?php foreach ($product->allPrices as $key => $price) {
echo $price["price_quantity_start"]." + <strong>£".$price["product_price"],$currency->_priceConfig['salesPrice'][1]."</strong><br/>";
}
?>
</div>
In product description I used:
<div class="price-table">
<?php foreach ($this->product->allPrices as $key => $price) {
echo $price["price_quantity_start"]." + <strong>£".$price["product_price"],$currency->_priceConfig['salesPrice'][1]."</strong><br/>";
}
?>
</div>