是否可以仅从 phtml 模板定位简单产品?
我看到类似的内容:
<?php if(!$_item->isComposite() && $_item->isSaleable()): ?>
但是
<?php if(!$_product->isGrouped()): ?>
找不到以类似方式仅针对简单产品类型的方法。
I see something like:
<?php if(!$_item->isComposite() && $_item->isSaleable()): ?>
and this
<?php if(!$_product->isGrouped()): ?>
But couldn't find a way to target only the Simple Product type in similar manner.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
作为另一种可能性,您可以假设存在一个简单的产品,该产品不是其他类型。
As an alternative possibility you could assume a Simple product is on that is no other type.
已经有一个模板文件
catalog/product/view/type/simple.phtml
,仅针对简单类型产品显示。如果它没有显示在正确的位置,您可以在
layout/catalog.xml
中查找
,了解如何制作您自己的 Simple-only 模板文件。There is already a template file
catalog/product/view/type/simple.phtml
that only displays for Simple type products.If that doesn't show in the right place for you look in
layout/catalog.xml
for<PRODUCT_TYPE_simple>
to see how to make your own Simple-only template file.