Magento 1.9.3可配置产品-超级产品的旧价格不令人失望

时间:2018-10-29 03:39:51

标签: php configuration attributes magento-1.9

我有两个从关联产品中选择的产品属性选项。

enter image description here

Option 1 adds 0 value
Option 2 adds 200 value to my existing pricing

我正在尝试在购物车页面中显示旧价格。这是我的代码

<?php foreach($this->getItems() as $_item): ?>
    <?php if ($_item->getProduct()->getPrice()): ?>
        <span class="oldPrice">
            <?php echo $this->helper('checkout')->formatPrice($_item->getProduct()->getPrice()) ?>
        </span>
    <?php endif; ?>
 <?php endforeach ?>

上面的代码只是向我显示了选项1的旧价格,即使我添加了带有选项2的购物车,价格为“ 200”。因此,如果我的旧价格是300,则应添加“ 200”并显示为“ 500”。代码中有任何特定原因吗?

0 个答案:

没有答案