Получить минимальную цену из tier prices в Magento
Код получения минимальной цены из tier prices в Magento..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
Magento get tier price with minimum price display <?php $product_tier_prices = $this->getTierPrices($_product); if(count($product_tier_prices) > 0){ $product_tier_prices = (object)$product_tier_prices; $product_price = array(); foreach($product_tier_prices as $key=>$value){ $value = (object)$value; $product_price[] = $value->price; } echo 'As low as: '.Mage::helper('core')->currency(min($product_price),true,false); } ?> |
Author: | Tags: /
| Rating:
Leave a Reply