Magento: Add multiple products to cart at once - magento

I have a number of configurable products in Magento CE 1.9
I would like to give users the ability to view a product and add multiple sizes to their cart with one click .
Product Title
Small : Select Quantity
Medium: Select Quantity
Large: Select Quantity
Add to Cart
The cart would then need to show how many of each size has been selected and show the total cost for that product.
Is this doable, and what is the best approach?
Many thanks

You could do it but it would be a lot of information for your customer, so what in my experience solves best you problem is to use an ajax cart module, that can add products to cart without leaving the pages, so if the customer want many sizes or colors, he keep adding the one he want.
Here follow a module that is already developed, but if you want a custom development my company can do for you just get in contact with me. ( module: <---- not my company module but worked once with a customer)

Related

Limit cart to 1 product per attribute/type - Magento

Our company sells pharmaceuticals online and by law we are limited to how much of a particular drug a customer can purchase.
For singular products with one brand this is easily controllable through default Magento functionality, my problem arises when we have different brands of a particular drug.
In a nutshell I can currently limit a customer to 1 pack of paracetamol from brand A but there is nothing to stop them getting another pack from brand B at the same time.
I would like to be able to check the cart for products with a particular attribute and limit them to 1 per cart. Ideally this would be when the customer clicks add to cart and the message would be displayed via the default Magento alerts that we currently have.
EDIT: I think the easiest way to solve this would be to check the SKU codes currently in the basket when adding a product to the cart. If there is a match, Throw up an error else add the item to the cart.
I think this link will help you but you need to modify as per your requirement. http://ceckoslab.com/magento/magento-check-if-product-is-in-cart/..
This link is to check the cart whether the same product is added or not? So modify this as per you requirement
You can set maximum allowed quantity in cart from admin panel. System->configuration. From left tab see catalog->inventory. Set Maximum qty allowed in shopping cart to 1.
If you want to add check on whole cart. see this paid extension

Price in Cart is not correct Magento 1.8

Today I've run into a new problem and can´t find a solution.
I've added some simple products and configurable products via MagMI. Everything is fine. Products are shown in the front-end as I want it. But following happens:
simple product 1 has a price of 49€, simple product 2 has a price of 90€.
Both are part of the same configurable product which has a price of 49€. Now, in cart, the single-price of both simples is 49€. (If I print out $_item->getSku() I get the right skus of the simple products, so I think, the products in cart are the correct ones)
How can I fix this?
It would be also helpful if someone could tell me where the subtotal is built exactly - I can't find this.
I would be thankful for all help or hints.
If the simple products are not visible individually then the price shown will be the price of the configurable product. The pricing variations on the associated single products are managed in the Associated Products tab of the configurable item.
Pricing is managed here as a plus/minus relative to the price of the main configurable.

Associating additional products to be bought while buying a product in magento

I am developing a magento shopping cart for selling some products. When the customer has chosen his product and wants to check out the product, I also want him to select some associated products that he would like to add to his cart. This association I should be able to make in the magento admin panel.
A working example of this is on this site.
Here is a screenshot of the requirement:
http://content.screencast.com/users/wardogg/folders/Jing/media/540714aa-7e54-461c-b09d-f1cba4513eff/2012-09-06_1612.png
I am using Magento shopping cart for my application. I would like to know if there is an existing extension that allows us to do this or if I will have to code something on my own.
Thanks for your help.
Built in already. RTFM:
http://www.magentocommerce.com/knowledge-base/entry/how-do-i-set-up-product-relations
Cross-Sells Cross-sells display after a product has already been added
to the shopping cart. In this design package, three products are
randomly picked from the products that are marked as cross-sells of
all the products in the shopping cart. To add cross-sell items to a
product: Log in to the Magento admin Navigate to Catalog -> Manage
Products Find the product you want to add cross-sells to Select and
edit this product Select the Cross-sells tab From the products grid
that appears, check any products you’d like to mark as cross-sells
(press “Reset Filter” to see all products) Once a product has been
checked, the “Position” field opens up. This determines the sort
order of the cross-sells in the shopping cart. If you have multiple
products in the cart they are randomly selected, so the sort order
will not take effect. Press “Save” In the front-end, add the product
you just edited to the shopping cart.
Clearly you need to style up your suggested products and how and when they appear in the customer journey. It may take work to get it right but it can all be done.

Magento Configurable Product Page RRP Updating

We have a configurable product made up of simple products all with different prices and RRP's when on the product page you select the simple product from the drop down it updates the price however it doesnt update the RRP.
Is their a way to get the RRP to update as well as the price?
I am not sure what RRP (Recommended Retail Price?) is but I think you may want to look at Magento's event system and look for the product_save_before event.
You can create an extension that will inject code just before the product saves that can modify the product. In this case you want to change the RRP.
Hi yes RRP is RRP (Recommended Retail Price?) In terms of the product_save_before is that tied to the option drops downs generated from the simple products? I might have no mentioned but this is the front end of the site. When a users selects the simple product on the website it to change not just the sale price but the RRP as well thats shown (RRP is stored as an attribute along with the price)

Add two products to magento Shopping Cart simultaneously on click of add to cart button

I have been working on a LiftSuggest - an automatic Product Recommendations generator.
Now,I have introduced a bundling functionality which will bundle two products and assign discount.
For example,
On product page of A of the client's site,I(LiftSuggest) displays a bundle Saying "Buy A and B together and avail 10% off on net value". Now, when the user clicks on the add to cart button , I want both the products to be added simultaneously to cart. I had implemented the solution proposed on this link, but I need the products to be added on click of add to cart button,without entering the quantity or providing the check box.Just imagine that you can see a box( container) containing two products and on click of add to cart button-in that div container itself, both of them should be added to cart.I can make out that I need to store both the products in session, but I don't know exactly how to proceed.
Scripting language used:PHP
Please Help!
There are cart rules for various shopping carts. You can manipulate those rules through coding and achieve the desired output.

Resources