Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在后端为产品设置了特价,但是当我进入产品页面时,价格会出现然后再次关闭。在购物车中也没有显示。
请参阅链接我的意思:链接
看到你的代码后,在第 177 行找到这个:
<?php echo $priceProperties; ?>
并替换为:
echo Mage::getModel('catalogrule/rule')->calcProductPriceRule($_product,$_product->getPrice());
我相信你的主题没有考虑到折扣。这将是主题开发的一个错误。
这是未经测试的(因为我没有完全访问您的主题的权限)代码,所以如果您有任何问题,请告诉我。