在我的产品页面上,我有两个选择。可以手动输入的产品的长度和宽度。在我的 cart.php 中我想知道长度和宽度。我怎样才能得到这两个值?
http://imageshack.us/photo/my-images/42/bildschirmfoto20130521u.png/(Länge in mm = 长度,Breite in mm = 宽度)
丹尼尔
在我的产品页面上,我有两个选择。可以手动输入的产品的长度和宽度。在我的 cart.php 中我想知道长度和宽度。我怎样才能得到这两个值?
http://imageshack.us/photo/my-images/42/bildschirmfoto20130521u.png/(Länge in mm = 长度,Breite in mm = 宽度)
丹尼尔
你可以获取如下
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'color');
foreach ($attribute->getSource()->getAllOptions(true) as $option) {
echo $option['value'] . ' ' . $option['label'] . "\n";
}
带属性
更多了解请参考以下链接