Hi,
i purchased your ajax shopping cart, very good work.
i have a little problem:
- when i add to cart a product in a product list and if this product have both required “custom option” and “associated products”, the ajax window only display the “associated products” and when i add to cart it occur an error.
Have you a solution for it?
Regards.
Rova
Our team just released a new version of EasyAjaxProduct!
Here is the Changelog for this version:
v1.2
-----------------------------
+ Exit button in pop-up
+ All links disabled during ajax load and background is shadowed
+ Product image zoom now for all products
+ Cart items count in speed bar now refreshing dynamically
- Grouped products bug fixed
Which way did you compose the hot topic related to this topic we think over? The <a href="http://www.exclusivethesis.com">dissertation</a> service will hire writers as you to do the graduate thesis doing. Thence you have got a really good opportunity to get to the association of professionals.
That can be essential to finish a best level <a href="http://www.exclusivethesis.com">thesis writing</a> when people are studying at the high school. Thence, your superb release just about this good post can be a perfect example for the dissertation international writers.
I am looking at a way to add to my cart from the listing page… Show basic information and maybe a small picture on the pop up if there is any custom options. So they can select options before the add to cart..
w
i’m also working on an ajax cart right now. I used this tutorial.
For simple products my code works but i want to work with configurable products too!
But i don’t know how i can get the simple product out of the configurable product.
var qty = $("#qty").val(); var product_id = $("#buyNowButton").attr("product_id");
var params = "product_id=" + product_id + "&qty;=" + qty;
var result = $.getJSON("/webshop/scripts/addToCart.php", params, function(data, textStatus){ if (textStatus == "error"){ alert("There was an error adding this item to your cart. Please call customer service for assistance.", "Error"); return; }
if (data.result == "error"){ alert("Sorry, an error occurred while adding the item to your cart. The error was: '" + data.message + "'"); return; }
It also allows to add products from category page even if a product has required custom options or configurations. Customers can choose them directly from AJAX pop up.