我想向您展示在产品详细信息页面中保存的百分比,以便同时实现简单和可配置。
我已在default.phtml
文件位置Theme/Magento_Catalog/templates/product/view/type/default.phtm
l中添加了代码。
<?php
if($_product->getTypeId() == "simple") {
$simplePrice = $_product->getPrice();
} else {
$_children = $_product->getTypeInstance()->getUsedProducts($_product);
foreach ($_children as $child){
$simplePrice = $child->getPrice();
break;
}
}
$_finalPrice =$_product->getFinalPrice();
$_price = $simplePrice;
if($_finalPrice < $_price) {
$_savingPercent = 100 - round(($_finalPrice / $_price)*100);
**echo 'Your save '.$_savingPercent . '%';**
}
?>