如何在magento 1.4.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] 替换为您的属性代码即可。 您也可以根据需要添加任意数量的属性,只需在配置中添加一个属性即可。