我想在POPUP中的magento产品页面中显示其他信息标签内容。基本上我想要一个弹出窗口,它会在链接到按钮的弹出窗口中显示该产品的所有属性值。我能够创建POPUP,我能够获得CURRENT产品,但无法获得所有其他属性值等。有人可以帮助在弹出窗口中获取此信息。我不是程序员,可能是我的方法错了。
基本上我想知道如何将产品ID和属性详细信息传递给POPUP模板。
答案 0 :(得分:0)
首先加载产品模块
$product=Mage::getModel('catalog/product')->load($_product->getId());
尝试加载产品类型的所有eav属性 $
attributes = Mage::getResourceModel('catalog/product_attribute_collection')
->getItems();
foreach ($attributes as $attribute){
echo $attribute->getAttributecode();
echo '<br>';
echo $attribute->getFrontendLabel();
echo $product->getData($attribute->getAttributecode());
}