My previous post on adding to the cart with ajax in Magento has generated enough interest – and pointed out enough flaws in my overly complex code – that I’ve decided to put together a simplified version, so here goes:
Step 1: Create the server side script.
My sample script is called “addToCartTest.php” and I put it in a /scripts folder in the root of my Magento installation.
[sourcecode language='php'] load($product_id); $session = Mage::getSingleton('core/session', array('name'=>'frontend')); $cart = Mage::helper('checkout/cart')->getCart(); $cart->addProduct($product, $qty); $session->setLastAddedProductId($product->getId()); $session->setCartWasUpdated(true); $cart->save(); $result = "{'result':'success'}"; echo $result; } catch (Exception $e) { $result = "{'result':'error'"; $result .= ", 'message': '".$e->getMessage()."'}"; echo $result; } [/sourcecode]
Step 2: Create the ‘html’ page
Obviously, you’d be putting this code into your product detail page or wherever you’re trying to add the item to the cart from.
[sourcecode language='html']Ajax add to cart sample Buy Now [/sourcecode]
That’s it!
Prerequisites:
1. jQuery (Because Magento uses prototype and scriptaculous, you have to use jQuery in “no conflict” mode);
I’ve included the source code, along with the no-conflict version of jQuery in the zip file attached.
Let me know if you’re using this code (helps my ego)!
=============================
“e-commerce done right”
http://www.ifuelinteractive.com
Dude, you saved me a lot of time. Worked perfectly, no strings attached.
Thanks!
Nice, any idea how to do this with configurable products?
Thanks
Excellent stuff, works perfectly. Now to figure out how to update the cart totals on the page…gonna be jquery to the rescue me thinks!
dude you are the man. I just changed it slightly to work with prototype 🙂
thanks!!
Cool script but it appears that this won’t work from a page that is not hosted on an external site. Thanks for posting.
I typed too fast. I was unable to get this script to work from a remote server (e.g. blog, website, etc.)
I am going to use this, but I just did a quick test with some modifications to handle multiple products. Get in touch if you’d like to see my changes – but they are pretty simple. I just send multiple product ids and quantities to the php script (I use a single delimited string for each set of product ids and for quantities, then explode it on the server and add each item to the cart). Works great, thanks!
Is this limited to any particular produce type(s)? I need a solution that will work for simple, configurable and bundled items, and this is definitely the most elegant method I’ve come across so far.
Thank you very much, greatly appreciated, we need more people like you helping us out with magento
Hi, I am getting an error {‘result’:’error’, ‘message’: ‘Mage registry key “_singleton/core/session” already exists’} any ideas?
Hi..i have changed a bit and i am able to add multiple products..but prblm is i have to update mycart in the page(the div)..have u tried it?if so pls mail me.
Thank you!
The script worked great, but for some reason it messed up my sessions. Magento kept redirecting to the folder of the ajaxAddToCart files. Fixed the issue by renaming a value in app/etc/local.xml, not sure what happened though. any ideas? (more fix info here: http://www.yireo.com/tutorials/magento/magento-administration/280-unable-to-login-into-the-magento-backend)
Let’s help your ego. It worked exactly as it mentioned. Great idea for basic starting. Thanks so much
This is really a simple version. I have been using Magento for 3 years now and every time I look for something like this.
Thx for sharing your approach! Your post helped me allot Im creating a complex product configurator within mage. At the end, I need a “add to cart” function of my created product and this snipet worked like a charm 🙂
Some editions: for some reasons, the async way of using getJSON (wich is a short for jQuery.ajax()) wont work for my setting, so I used jQuery.ajax() with async:false to make the call.
In addition I found out parsing the result JSON oject with jQuery.parseJSON() will fail cause the result JSON is invalid. You have to use double quatation marks when building your JSON string within the PHP. Example:
$result = “{“result”:”success”}”;
Thanks for sharing! I ran into a couple of issues when interpreting the json result.
This seems to have done the trick:
$result = array('result'=>'success');
echo json_encode($result);
i have not got your coding pattern for add to cart.i have placed addToCartTest.php and jquery-1.3.2.min-noconflict.js of root in /script folder but where i would to put addToCartTest.html , i am not clear how to use this html file
can u please help how this script run perfectly for me ??
Thanks
Thank’s. Easy & perfect!
Hi, first of all thanks for your good work.. its easy and fast to implement, but here is what i require.. i am on product listing page and i need to reflect the cart updated quantity in top menu and side as well. can you please help me out with the solution i am also trying to do so. any help will be appreciated.
Thanks
Hi,
I’m actually using Magento for a school projet and I used your script. However i had to create some configurable products and i dunno how to implement it so that this script would work with this type of product. Would someone face the same issue and have a solution? Thx.
If the product have options? How to use this? Thanks
Does this can work in magento 1.5 ? anyhow, I’m downloading to test it.
Hi there, how do you implement it into the list.phtml page? I have added it but it is not adding the products? Thank you.
Very nice script
Great article. I prefer a quick and easy solution so can you recommend an extension with the same function, like this one https://marketplace.magento.com/bsscommerce-ajaxcart.html