如何在magento 1.4.1.1中将自定义上传的图像添加到购物车?

时间:2010-10-26 06:51:25

标签: magento

如何在magento 1.4.1.1中将自定义字段和自定义图像添加到购物车?

任何人都对此有任何想法???

1 个答案:

答案 0 :(得分:4)

如果您需要将自定义产品属性添加到购物车,只需将以下代码行添加到模块配置中:

<config>
     <global>
          <sales>
               <quote>
                    <item>
                        <product_attributes>
                             <[your_custom_attribute_code] />
                        </product_attributes>
                    </item>
               </quote>
          </sales>
     </global>
</config>

只需将 [your_custom_attribute_code] 替换为您的属性代码即可。 您也可以根据需要添加任意数量的属性,只需在配置中添加一个属性即可。