• Resolved copperdesk

    (@copperdesk)


    Hello,

    Is there any way that I can add all products to the cart by a single click?

    Example: I’m creating a recipe site. There are few ingredients under one recipe. Every ingredient has a “buy now” button. I want to create a “add all” button that will add all the ingredients to the cart. Is this possible?

    I’ve found and tried “/?add-to-cart={product-id}”

    {product-id} is replaced by actual product id. This successfully adds a single product.

    I’ve also tried “/?add-to-cart={product-id}&{product-id}” eg. “/?add-to-cart=24&35”. This is supposed to add two products (24 and 35) to the cart. But this is not working. I must be doing something wrong.

    Can anyone point me to right direction please?

    Thank you in advance.

    Raja.

    https://www.ads-software.com/plugins/woocommerce/

Viewing 15 replies - 1 through 15 (of 16 total)
  • Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    WC can only add 1 item at a time using that endpoint. You’d need something custom to do this as it stands right now. e.g custom query string variable, then when detected, loop over all the item IDs and call WC()->cart->add_to_cart() for each.

    jobs.wordpress.net if you need help coding this.

    Thread Starter copperdesk

    (@copperdesk)

    Thank you for your reply @mike. Totally gone over my head though. Rookie this side. ??

    Going to wordpress.net

    Cheers!

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Someone else asked this earlier and I found a plugin which claims to do multiple add to cart. See https://www.ads-software.com/support/topic/multiple-add-to-cart-button?replies=8

    Thread Starter copperdesk

    (@copperdesk)

    Dear Mike Jolley,

    You are being very helpful Sir. Thank you for sharing the link. Yes I’ve checked the plugin before posting the question. I’ve googled, tried stackoverflow and stackexpert, woocommerce support forum etc.

    If you have few minutes then please check the link. I’m working on this demo site. https://goo.gl/bQQ8jN

    You’ll see that I’ve successfully added “buy now” buttons to available products.

    Now I need a “add all” button at the bottom. I’ve checked https://docs.woothemes.com/wc-apidocs/class-WC_Cart.html for WC()->cart->add_to_cart() as you suggested. But could not understand how to implement ‘foreach’

    Can you please please please send me example code?

    Thank you very much in advance.

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Thread Starter copperdesk

    (@copperdesk)

    Hello Mike,

    Wow! I can not thank you enough for your help. You wrote the whole code for this? Thank you Sir.

    I’m very sad to say that it is not working. Maybe I’m doing something wrong. I think you might be irritated by now. But I’m learning.

    I’ve copied raw code from github and pasted in my theme’s functions.php as you instructed. I’ve two products. IDs are 82 and 90. Suppose 82 is the main product. I made 90 as a upsell under 82. Added the link mysite.com/add-upsells-to-cart=82 (404 Error) but neither of the link is adding both the products.

    Sir do you have time to help me more on this? I’m already highly obliged.

    Thank you.
    Raja.

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    mysite.com/?add-upsells-to-cart=82

    missing ?

    Thread Starter copperdesk

    (@copperdesk)

    Oh! My mistake. ? mark missing in my URL. Extremely sorry.

    Yes! It is working and adding all the upsell product. But it is still not adding the main product clicking mysite.com/?add-upsells-to-cart=82

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    This just adds the upsells, as specified in the gist.

    Thread Starter copperdesk

    (@copperdesk)

    Thank you Sir. Thank you very much. You have shown be new ways. I’ve learned a lot. I’ll update this thread if I come across something more on this.

    Thread Starter copperdesk

    (@copperdesk)

    Can you please tell me one last thing? Which part of the code is creating the text “add-upsells-to-cart”? Can I change it if I change all instances of “add-upsells-to-cart” from function.php?

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    It’s just these 2 lines which control the name of the query string variable https://gist.github.com/mikejolley/cd67b0baf1c3767bb29f76471fea120b#file-gistfile1-txt-L11-L12

    for anyone interested i added 1 line to mike’s great bit of code to include the main (parent) product. so this will add the product for the provided id and all of its upsells to the cart.

    add_action( 'wp_loaded', 'bulk_upsell_add_to_cart_action', 20 );
    
    function bulk_upsell_add_to_cart_action() {
    	if ( ! empty( $_GET['add-upsells-to-cart'] ) ) {
    		$product_id = absint( $_GET['add-upsells-to-cart'] );
    		$product    = wc_get_product( $product_id );
    
    		if ( $product ) {
    			$upsell_ids = $product->get_upsells();
    			array_unshift($upsell_ids, $product_id); // <-- new line
    
    			if ( $upsell_ids ) {
    				$count = 0;
    
    				foreach ( $upsell_ids as $upsell_id ) {
    					if ( WC()->cart->add_to_cart( $upsell_id ) ) {
    						$count ++;
    					}
    				}
    
    				wc_add_notice( sprintf( _n( 'Added %d item to the cart', 'Added %d items to the cart', $count ), $count ) );
    
    			}
    		}
    	}
    }

    This code adds 2 of each product for me, as well. Did anyone figure this out? Perhaps something outside the code is causing it to act incorrectly?

    Hi

    I am having this similar problem..

    I try to loop through the products & use WC()->cart->add_to_cart( $product_id, $quantity )

    but when i var_dump(WC()->cart->get_cart()); I only get one product, and this product is always the one that is at the end of the products array…

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Add Multiple Products in single click.’ is closed to new replies.