如何检查产品是否可下载?
How to check if the product is downloadable?
我想检查产品是否可下载,是否没有重量,所以我可以检查产品是否可销售以解决错误。
这是我要为其添加条件的支票
<?php if ($_product->isSaleable()): ?>
要确定产品是否为可下载产品,您必须检查产品的类型。您 can see how this is implemented in the internal admin panel widget,并且应该能够使其适应您自己的模板:
if ($_product->isSaleable() && ($_product->getTypeId() == \Magento\Downloadable\Model\Product\Type::TYPE_DOWNLOADABLE)):
我想检查产品是否可下载,是否没有重量,所以我可以检查产品是否可销售以解决错误。
这是我要为其添加条件的支票
<?php if ($_product->isSaleable()): ?>
要确定产品是否为可下载产品,您必须检查产品的类型。您 can see how this is implemented in the internal admin panel widget,并且应该能够使其适应您自己的模板:
if ($_product->isSaleable() && ($_product->getTypeId() == \Magento\Downloadable\Model\Product\Type::TYPE_DOWNLOADABLE)):