我仅在选择“是”时才尝试显示自定义是/否产品属性。到目前为止,这是我的代码:
<?php $freeship = Mage::getModel('catalog/product')->load($this->getProduct()->getId())->getAttributeText('free_shipping_discount');
if ($freeship == "yes")
echo '<span class="free-ship">FREE SHIPPING</span>'; ?>
它不会产生错误,但也不会显示任何内容。有什么建议么?
谢谢