Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够在应用目录价格规则之前在我的 Magento 商店中显示产品的价格。理想情况下,我只想在后端的“价格”框中输入数字,没有税,没有规则,没有任何类型的修改。
$_product->getFinalPrice()非常适合在所有这些规则之后显示最终价格,通常正是我所需要的。有没有显示“非最终”价格的东西?
$_product->getFinalPrice()
假设它是一个标准产品对象,您可以使用$_product->getPrice()which 应该检索在该产品后端的价格字段中输入的值。
$_product->getPrice()