我为dfferent产品添加了不同的制造商属性。我想显示在前端右栏的管理后端添加的所有制造商属性。 如果有人知道这一点,请帮帮我
答案 0 :(得分:1)
代码如下......请在catalog.xml引用权限中调用xml代码。
<reference name="right">
<block type="core/template" after="cart_sidebar" name="catalog.manu" template="catalog/product/manu.phtml"/>
.....
</reference >
在目录&gt; product / manu.phtml下添加添加文件 内容低于
<?php
$attribute = Mage::getSingleton('eav/config')->getAttribute('catalog_product', 'color');
if ($attribute->usesSource()) {
$options = $attribute->getSource()->getAllOptions(false);
if(count( $options)>0){
?>
<select>
<?php
foreach($options as $eachval){
?>
<option value="<?php echo $eachval['value']?>"><?php echo $eachval['label']?></option>
<?php } ?>
</select>
<?php } } ?>