使用代码 Magento 将图像或文件添加到购物车
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解您的问题,您希望能够使用以下选项将产品添加到购物车:
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