価格商品の入手方法
シンプルな製品で:$oldPrice= $_product->getPrice();
$newPrice= $_product->getSpecialPrice();
正しい結果を返します
構成可能な製品の場合:
$oldPrice= $_product->getPrice(); //return Null
$newPrice= $_product->getSpecialPrice(); // return Null
1 つの構成可能な製品と 2 つの単純な製品があります。
TestCon1 Simple1: 価格 120$. 特別価格: 100$
simple2: 価格 120$. 特別価格: 90$
構成可能なリターンの価格を取得する必要があります: TestCon1 Price 120$。特別価格: 90 ドル。
私が使う$oldpriceConf= $_product->getFinalPrice(); // retunr 100$