Use the coupon code WORDPRESS and save 30% OFF! Buy Now

Quickly add multiples of a product to the WooCommerce cart

Posted On
Quickly add multiples of a product to the WooCommerce cart WordPress template

In some cases your customers might need to add many items of the same product to the cart. For example if you sell spirits a customer might want to purchase a case of wines or a pack of beers, we can easily create a button which will give customers the ability to add, for example 6 wine bottles, equivalent to a case, or 12 cans of beer, to make it easier for them to purchase the amount of items they want and save us from the trouble of having to create separate products for this occasion.

Install and activate a child theme

The first step on our process here is to create and install a child theme. If you are using one of our themes you can easily grab its child theme from our downloads section. If not, you can read our beginner’s guide on child themes to create your own. This step is essential in order to preserve our changes throughout theme updates.

All code below will be placed in our child theme’s functions.php file. If the file is empty the code will go just below the opening <?php tag, otherwise, if it has contents, the code should be placed at the end of the file, before the closing ?> PHP tag if it exists.

Create the quantity custom field

We will start once again by adding a custom field to our products. We have added gone through this process in our dedicated guide on how to add and display custom fields on products here. This is the code we need.

add_action( 'woocommerce_product_options_inventory_product_data', 'cssigniter_bulk_add_button_field' );
function cssigniter_bulk_add_button_field() {

woocommerce_wp_text_input(
array(
'id' => 'cssigniter_bulk_add_number',
'value' => get_post_meta( get_the_ID(), 'cssigniter_bulk_add_number', true ),
'label' => __( 'Bulk add products number', 'your-text-domain' ),
'description' => __( 'Select the number of products you want the bulk add to cart button to add.', 'your-text-domain' ),
'type' => 'number',
'wrapper_class' => 'show_if_simple',
)
);
}


add_action( 'woocommerce_process_product_meta', 'cssigniter_bulk_add_button_save_data' );
function cssigniter_bulk_add_button_save_data( $post_id ) {

$bulk_add_number = $_POST['cssigniter_bulk_add_number'];
if ( ! empty( $bulk_add_number ) ) {
update_post_meta( $post_id, 'cssigniter_bulk_add_number', absint( $bulk_add_number ) );
}
}
Add the custom field and take care of data saving.

Here we add a custom text field which accepts numbers in the inventory tab of the product data metabox. As you can see in line 11 the metabox only appears on simple products. Our bulk add to cart button will only appear on simple products due to the way WooCommerce handles adding to cart on variable and grouped products. Below you can see the final result.

Create the button itself

Our button will appear on product listing pages, just after the normal add to cart button provided by WooCommerce. The woocommerce_after_shop_loop_item hook will help us with that. We will need to use a priority of 15 in order to show our new button after the existing one. You can use lower priority, 7 for example, to show the button before the regular add to cart. Below is the code needed to make this happen.

add_action( 'woocommerce_after_shop_loop_item', 'cssigniter_second_cart_button', 15 );
function cssigniter_second_cart_button() {
global $product;

$quantity = get_post_meta( $product->get_ID(), 'cssigniter_bulk_add_number', true );

if ( empty( $quantity )
|| 'simple' !== $product->get_type()
|| ! $product->is_purchasable()
|| ! $product->is_in_stock() ) {
return;
}

if ( $product->get_manage_stock() ) {
if ( $product->get_stock_quantity() < $quantity ) {
return;
}
}

$classes = implode(
' ',
array_filter(
array(
'button',
'product_type_' . $product->get_type(),
'add_to_cart_button',
$product->supports( 'ajax_add_to_cart' ) ? 'ajax_add_to_cart' : '',
)
)
);

ob_start();

?>
<a
href="<?php echo esc_url( $product->add_to_cart_url() ); ?>"
class="<?php echo esc_attr( $classes ); ?>"
data-quantity="<?php echo absint( $quantity ); ?>"
data-product_id="<?php echo absint( $product->get_id() ); ?>"
data-product_sku="<?php echo esc_attr( $product->get_sku() ); ?>"
rel="nofollow">
<?php
echo sprintf(
/* translators: %s: quantity to add to cart */
esc_html__( 'Add %s to cart', 'your-text-domain' ),
absint( $quantity )
);
?>
</a>

<?php

echo ob_get_clean();
}

Let’s break the code down a bit so we can understand what’s happening. In lines 7-18 we have our checks to make sure the button appears only where it should. We start by checking if the current product is a simple product, next we check if the product can be purchased, then we make sure if it’s in stock, if one of these fails the button won’t appear. Next up we have a specific check for products under stock management, if a product is under stock management we need to make sure there is enough stock to complete a bulk add. Lines 20-30 are where we gather the CSS classes that will be added to the html element creating the button. Finally lines 35-49 is where the button anchor element is built. This is how our final result looks like.

Now when a customer clicks on the new button 6 items will be added to the cart. The text of the button can be easily changed to something like, but a box (6) or anything that might better suit your specific needs.

Wrapping up

We have successfully added a new bulk add button to product listings which allows users to add multiple items from the same product to their cart with a single click. Did you find this feature useful? Let us know in the comments below.

3 responses to “Quickly add multiples of a product to the WooCommerce cart”

  1. Casper says:

    Hi! Thanks a lot for this explanation! I have an additional question. Is it possible to give the second button a seperate class so that I can style it different from the original button?

    • Casper says:

      Already found it myself :) is added a class custom-bulk-button. Now, if i edit the css of the class ‘.custom-bulk-button’ I only change the newly added button.
      line 24: ‘button’,
      line 25 (ADDED): ‘custom-bulk-buttom’,
      line 26: ‘product_type_’ . $product->get_type(),

Leave a Reply

Your email address will not be published. Required fields are marked *

Get access to all WordPress themes & plugins

24/7 Support Included. Join 115,000+ satisfied customers.

Pricing & Sign Up

30-day money-back guarantee. Not satisfied? Your money back, no questions asked.

Back to top