使用代码 Magento 将图像或文件添加到购物车

发布于 2024-11-05 17:09:54 字数 753 浏览 0 评论 0原文

可能的重复:
Magento 将文件附加到订单或购物车中的产品

如何将图像添加到购物车 该图像将位于主机服务器上。 我知道这可以通过产品页面上的自定义选项来完成。 是否可以通过查询字符串添加它。

require_once \'app/Mage.php\';
umask(0);
Mage::app();

Mage::getSingleton(\'core/session\', array(\'name\'=>\'frontend\'));

$cart = Mage::getSingleton(\'checkout/cart\');
cart->addProduct(108, array(\'qty\' => 1,\'super_attribute\'=>array(\'502\'=>\'46\')));

$cart->save();
$cart_count = $cart->getItemsCount();

Possible Duplicate:
Magento attach a file to order or product in cart

How to do I add image to Cart
The image will be on the host sever.
I know this can be done through custom option on the product page.
Is it possible to add it through Querystring.

require_once \'app/Mage.php\';
umask(0);
Mage::app();

Mage::getSingleton(\'core/session\', array(\'name\'=>\'frontend\'));

$cart = Mage::getSingleton(\'checkout/cart\');
cart->addProduct(108, array(\'qty\' => 1,\'super_attribute\'=>array(\'502\'=>\'46\')));

$cart->save();
$cart_count = $cart->getItemsCount();

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

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

发布评论

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

评论(1

哆啦不做梦 2024-11-12 17:09:54

如果我正确理解您的问题,您希望能够使用以下选项将产品添加到购物车:

http://your.site.com/checkout/cart/add/product/29/?super_attribute[ 502]=46&qty;=1

参考:http:// www.magentocommerce.com/wiki/4_-_themes_and_template_customization/catalog/adding_a_product_to_the_cart_via_querystring

If I'm understanding your question correctly you want to be able to add a product to the cart with an option:

http://your.site.com/checkout/cart/add/product/29/?super_attribute[502]=46&qty;=1

Reference: http://www.magentocommerce.com/wiki/4_-_themes_and_template_customization/catalog/adding_a_product_to_the_cart_via_querystring

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