如果 attribute_set 为 1 且 attributeText 为零,我想显示一些数据
AttributeSetId = 10 Attribute = myattribute,包含:零、一、强制
<?php if ($_product->getAttributeSetId() == "10"): && ($_product->getAttributeText('myattribute') == "Zero"):?>
My data
<?php endif; ?>
怎么了?
任何帮助表示赞赏。
自己解决:
<?php if ($_product->getAttributeSetId() == "10" && $_product->getAttributeText('myattribute') == "Zero"):?>