浏览文章
文章信息
Magento2 获取可配置产品(configurable)的价格范围
15349
代码示例:
<?php $price_str=''; if($price = $product->getPrice()){ $price_str .= (string)$price; }else{ $regularPrice = $product->getPriceInfo()->getPrice('regular_price'); $price_str .= $regularPrice->getMinRegularAmount().'-'.$regularPrice->getMaxRegularAmount(); } echo $price_str;