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

发布于 2024-09-28 21:26:56 字数 70 浏览 2 评论 0原文

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

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

How to add custom fields as well as custom images to cart in magento 1.4.1.1 ?

Any one have any idea about this???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀞厅☆埖开 2024-10-05 21:26:56

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

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

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

If you need add you custom product attribute to shopping cart, just add the following lines of code into your module configuration:

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

Just replace [your_custom_attribute_code] with the code of your attribute.
You may also add as many attributes as you wish, just add one more attribute into configuration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文