【问题标题】:How to check if the product is downloadable?如何检查产品是否可下载?
【发布时间】:2017-11-10 21:29:16
【问题描述】:

我想检查产品是否可以下载并且没有重量,所以我可以检查它,除了产品是否可销售以解决错误。

这是我要添加条件的检查

<?php if ($_product->isSaleable()): ?>

【问题讨论】:

    标签: php templates zend-framework magento2


    【解决方案1】:

    要确定产品是否为可下载产品,您必须检查产品的类型。你can see how this is implemented in the internal admin panel widget,应该能够适应你自己的模板:

    if ($_product->isSaleable() && ($_product->getTypeId() == \Magento\Downloadable\Model\Product\Type::TYPE_DOWNLOADABLE)):
    

    【讨论】:

    • 如果我想检查商品是否没有重量
    • 也可以通过getWeight()$_product 获得。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-11-14
    • 2014-10-08
    • 2021-02-24
    • 2020-08-21
    • 1970-01-01
    • 2021-12-04
    相关资源
    最近更新 更多