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 API 还不是很了解,所以我不知道在哪里搜索。我在文档getTierPriceHtml($product)中找到了但这并没有真正帮助我。
getTierPriceHtml($product)
那么,是否有一个函数可以在我的 $product 对象上调用(在模板中)并检查产品是否具有层级定价?如果不存在直接功能,那么简短的解决方法也会有所帮助。
我试过if (getTierPriceHtml($product) != null)....了,但这没有用,而且无论如何都是一种丑陋的方法。
if (getTierPriceHtml($product) != null)....
试试看$product->getTierPrices()。如果返回一个空数组,则意味着它根本没有任何等级价格。
$product->getTierPrices()