如何在产品详细信息页面magento 2.1中显示保存百分比?

时间:2018-06-23 13:28:48

标签: magento magento2 magento2.1

我想向您展示在产品详细信息页面中保存的百分比,以便同时实现简单和可配置。

我已在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 . '%';**

}
?>

0 个答案:

没有答案