タグ付けされた質問 「percentage」

4
Magento 2の製品リストに構成可能な製品割引をパーセントで表示する方法
商品詳細ページには、割引率が表示されています。リストページを開くと、構成可能な製品の割合を表示できません。 その解決策をください。 そのために以下のコードを使用しましたが、構成可能な製品では機能しません。 <div class="discount-p"> <?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 '('. $_savingPercent . '%off)'; …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.