Magento Expert Forum - Improve your Magento experience

Results 1 to 9 of 9

How to add multiple products to cart simultaneously in Magento store?

  1. #1
    Junior Member James's Avatar
    Join Date
    Jan 2016
    Posts
    663
    Thanks
    2
    Thanked 13 Times in 12 Posts

    Default How to add multiple products to cart simultaneously in Magento store?

    Customers are always busier and busier and they continue to make demands for as a quick order process as possible to save shopping time and buy a lot of products at one time.
    For Magento store, ot becomes more simple than ever with some extensions that allow customers to purchase a large number of item by only a click.

    Add Multiple Products to Cart: Like the name of this module, when store owners use it for their site, customers can add a many products to cart at once in the product list pages such as category pages or search result pages without visiting product pages one by one


    • Add checkbox for every product and customers can multi-check. Selected products can be added to cart all together immediately by clicking "Add All To Cart" button

      Name:  Screenshot_1.png
Views: 619
Size:  135.3 KB
    • Add a quantity box for each product and customers can choose various quantities for their desired products to add to cart.
    • Display Select Option Check Box to choose custom options for configurable, bundle, downloadable or simple products before adding to cart
    • Show “Check All” button to select all products on the page


    Therefore, it's very easy for customers to purchase products especially in case they want to buy with the large quantity. One more important thing is customers can keep their loyalty to your store because of better shopping experience.

    Enhance shopping experience now!

    View more threads in the same category:


  2. The Following User Says Thank You to James For This Useful Post:

    Sophia Walford (22-08-2016)

  3. #2
    Junior Member Alexsmith's Avatar
    Join Date
    Apr 2016
    Posts
    341
    Thanks
    2
    Thanked 7 Times in 7 Posts

    Default

    As you know, on a Magento default website when customers add a product to cart normally the selected item will be stored on the shopping cart page on which if customers want to buy other products they have to click on “Continue shopping” button to go back to a listing page. Thus, it’s sometimes unfriendly and time-costly for the customers to order a bunch of products. As a matter of fact, we designed and developed Magento Ajax Cart which makes Magento cart UI absolutely friendly for customers to add products to cart or remove items from cart without page reload. From this, your customers will find it convenient, exciting and time-saving to buy the products on your site.

    Magento Ajax Cart extension works with all product types: simple products, virtual products, downloadable products, grouped products, configurable products, bundle products. It’s also working well with Wishlist page and shopping cart page. Check Live Demo

    Let's come into Magesolution's world to have more choice!

    Name:  ajaxcartpro.png
Views: 604
Size:  92.1 KB

  4. #3
    Expert
    Join Date
    Mar 2016
    Location
    india
    Posts
    570
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    Hi,

    Adding multiple products to the cart simultaneously in Magento

    A while ago I wrote about adding multiple products to the shopping cart simultaneously. It turns out this seems to have stopped working from Magento 1.4 or so. Up until now, I’ve not really had the time to look in detail to figure out why. Finally, this evening, I got some time. So I dug deeper.

    It turns out there seems to have been some changes in the way models persist their data, and unsetting and unloading/resetting them didn’t seem to cut it any more. Anyway, below is a fixed version of the previous post. Tested on 1.4.2.0 and 1.6.0.0.

    This is a replacement for the file app/code/local/BTS/AddMultipleProducts/controllers/AddController.php;

    <?php

    class BTS_AddMultipleProducts_AddController extends Mage_Core_Controller_Front_Action {

    public function indexAction() {
    $products = explode(',', $this->getRequest()->getParam('products'));
    $cart = Mage::getModel('checkout/cart');
    $cart->init();
    /* @var $pModel Mage_Catalog_Model_Product */
    foreach ($products as $product_id) {
    if ($product_id == '') {
    continue;
    }
    $pModel = Mage::getModel('catalog/product')->load($product_id);
    if ($pModel->getTypeId() == Mage_Catalog_Model_Product_Type::TYPE_SIMPLE) {
    try {
    $cart->addProduct($pModel, array('qty' => '1'));
    }
    catch (Exception $e) {
    continue;
    }
    }
    }
    $cart->save();
    if ($this->getRequest()->isXmlHttpRequest()) {
    exit('1');
    }
    $this->_redirect('checkout/cart');
    }

    }

  5. #4
    Junior Member
    Join Date
    Aug 2016
    Posts
    121
    Thanks
    11
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by James View Post
    Customers are always busier and busier and they continue to make demands for as a quick order process as possible to save shopping time and buy a lot of products at one time.
    For Magento store, ot becomes more simple than ever with some extensions that allow customers to purchase a large number of item by only a click.

    Add Multiple Products to Cart: Like the name of this module, when store owners use it for their site, customers can add a many products to cart at once in the product list pages such as category pages or search result pages without visiting product pages one by one


    • Add checkbox for every product and customers can multi-check. Selected products can be added to cart all together immediately by clicking "Add All To Cart" button

      Name:  Screenshot_1.png
Views: 619
Size:  135.3 KB
    • Add a quantity box for each product and customers can choose various quantities for their desired products to add to cart.
    • Display Select Option Check Box to choose custom options for configurable, bundle, downloadable or simple products before adding to cart
    • Show “Check All” button to select all products on the page


    Therefore, it's very easy for customers to purchase products especially in case they want to buy with the large quantity. One more important thing is customers can keep their loyalty to your store because of better shopping experience.

    Enhance shopping experience now!
    Hello James, I am looking for an extension that allows multiple products to cart simultaneously and the extension you suggested seem to suitable. However, I have some concerns regarding the extension's features and function.
    1. Does the extension permit adding all products to cart?
    2. Can admin restrict the function of adding multiple products to cart to work at specific product types?
    3. Can admin decide which customer group can use this module function?

  6. #5
    Junior Member
    Join Date
    Aug 2013
    Location
    USA
    Posts
    353
    Thanks
    0
    Thanked 4 Times in 4 Posts

    Default

    Hello there,

    To add multiple products in a cart is now become easy with the Multiple cart extension. Extensions are very useful in order to enhance store's performance. you can integrate various extensions and get benefited by them. Multiple Cart extension for Magento lets you buy the simple products in a minute, just by selecting the products through check box and adding the quantities for each on the list page itself and adding them to cart.



    Multiple Cart extension for Magento, of course, lets customer add single product to the cart individually after adding quantity from the list page.

    Some of the features of Multiple carts Extension is as follows:

    - Customers can add multiple products to cart at the same time.
    - They can order all of them together by clicking on ‘add to cart’ button.
    - They can type the quantity for each product.

  7. #6
    Junior Member Amasty's Avatar
    Join Date
    May 2013
    Posts
    396
    Thanks
    1
    Thanked 4 Times in 3 Posts

    Default

    Hello!
    Here is one more great extension - Ajax Shopping Cart for Magento

    With this module you'll get:

    A lot more user-friendly shopping process
    +1 sales method
    AJAX-based modern technology
    Support of configurable products and custom options
    Attractive and flexible cart overview window

    Name:  magento-ajax-shopping-cart-related-products.png
Views: 701
Size:  204.9 KB

    If you have already switched to Magento 2, then take a look at this Magento 2 AJAX Shopping Cart

  8. #7
    Junior Member
    Join Date
    Jun 2016
    Posts
    20
    Thanks
    5
    Thanked 5 Times in 3 Posts

    Default

    Nice extension!
    I suggest another extension that not only helps customers to add multiple children products to cart but also brings a better display for configurable products.
    If you are interested, check Magento Configurable Product Table Ordering demo here!

  9. #8
    Junior Member emmanguyen's Avatar
    Join Date
    Nov 2016
    Posts
    160
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    With the success of Magento 1 version, BSSCommerce just released Add Multiple Products To Cart for Magento 2 The extension supports customer in choosing as many products as they want with these following features:

    • Adding many products to cart by checkbox and quantity box next to each product at category pages and search result pages.


    Name:  add-multiple-products-to-cart-magento_2_-grid_view.png
Views: 864
Size:  51.2 KB

    1. Pop up to select options and notify about products added to cart.


    Name:  add-multiple-products-to-cart-magento_2-sucess_popup.png
Views: 662
Size:  23.1 KB

    • Enable/disable module for customer groups.
    • Work for simple, configurable, bundle products and simple products with custom options.


    Install NOW for FREE support and update!

  10. #9
    Junior Member magentoextensions's Avatar
    Join Date
    Mar 2018
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Many of the magento extensions are their and adds multiple product to cart magento 2 extension, You can add multiple product to the cart with just one click. This is simple extension and yet effective, just add the product to the cart on click, no access effeorts.
    Name:  121 pictures.png
Views: 149
Size:  585.6 KB.
    Last edited by magentoextensions; 13-03-2018 at 10:18 AM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •