是否可以仅从 phtml 模板定位简单产品?

发布于 2024-10-13 08:54:47 字数 244 浏览 2 评论 0原文

我看到类似的内容:

     <?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

高速公鹿 2024-10-20 08:54:47
<?php if( $_product->getTypeId() == 'simple' ): ?>
<?php if( $_product->getTypeId() == 'simple' ): ?>
奢欲 2024-10-20 08:54:47

作为另一种可能性,您可以假设存在一个简单的产品,该产品不是其他类型。

<?php if (!$_item->isComposite() && !$_item->isSuper() && !$_item->isVirtual()): ?>
    <!-- Simple type only -->
<?php endif; ?>

As an alternative possibility you could assume a Simple product is on that is no other type.

<?php if (!$_item->isComposite() && !$_item->isSuper() && !$_item->isVirtual()): ?>
    <!-- Simple type only -->
<?php endif; ?>
天涯沦落人 2024-10-20 08:54:47

已经有一个模板文件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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文