Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Last active November 22, 2023 06:17
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save claudiosanches/6f91ad228c2176b986b2 to your computer and use it in GitHub Desktop.
Save claudiosanches/6f91ad228c2176b986b2 to your computer and use it in GitHub Desktop.
WooCommerce - Change ajax variation threshold
function custom_wc_ajax_variation_threshold( $qty, $product ) {
return 10;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );
@guru75
Copy link

guru75 commented Sep 25, 2018

This works for 200 variation product

function custom_wc_ajax_variation_threshold( $qty, $product ) {
return 200;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 100, 2 );

@dnavarrojr
Copy link

Not working in WordPress 5.1 and WooCommerce 3.5.7

@jcvikl
Copy link

jcvikl commented May 24, 2019

Do you generate new file under Woocoomerce plugin folder or you put code into functions.php themes file?

@ZanekShaw
Copy link

ZanekShaw commented Jul 5, 2019

Hey, I'm using the following code but it doesn't seem to work for me.
Any advice would be greatly appreciated.


/**
 * Change woocommerce_ajax_variation_threshold
 */
function custom_wc_ajax_variation_threshold( $qty, $product ) {
	return 200;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 100, 2 );

@VdVwebdesign
Copy link

Hey, I'm using the following code but it doesn't seem to work for me.
Any advice would be greatly appreciated.


/**
 * Change woocommerce_ajax_variation_threshold
 */
function custom_wc_ajax_variation_threshold( $qty, $product ) {
	return 200;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 100, 2 );

I have the same problem.
Can anyone help us?

@claudiosanches
Copy link
Author

This code works just fine in WooCommerce 3.6.5.

@GoElemental
Copy link

Code works great in WP 5.3

I have a product with 250 variations and used this code:
function custom_wc_ajax_variation_threshold( $qty, $product ) { return 300; } add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 100, 3 );

No problems whatsoever. Thank you Claudio!

@thefacc92
Copy link

I'm new in this and have the same problem with 350+ variations.
Where can i put this code in?
Thank you btw.

@rajeshraval
Copy link

add 1 value into backend

steps : WooCommerce Variation Swatches Settings --> advanced --> Ajax variation threshold add 1 value into it and everything works fine.

Thank you

@risingrun
Copy link

I have lots of 7 attributes with lots of options I mentioned bellow.

The first attribute has 7 option
The 2nd attribute has 4 option
The 3rd attribute has 15 option
The 4th attribute has 20 option
The 5th attribute has 20 option
The 6th attribute has 20 option
The 7th attribute has 3 option

7x4x15x20x20x20 = 10080000 variation. How do I made those variations? Anybody can help me?

@AhmadDastageer
Copy link

I have a product with 1680 variations. How to resolve site speed?

@Propelevate
Copy link

risingsun and AhmadDastageer:

That is definitely too many variations. This will slow your site down way too much probably. I would recommend using Gravity Forms for WooCommerce. Then your users are just filling out a form instead of choosing from a huge list of options. You do loose some other cool functionality like showing swatches for product colors, or specifying images for certain selections, but I'm guessing with that many options, you aren't using features/plugins to do those things anyway.

The other options is to split out your variations into multiple products. Not sure if this is logical for your products, but you definitely need to bring that number way down.

I sell customizable apparel on WooC, so I literally have unlimited variations. I can then just create the one item and add the Gravity Form. It will even let you adjust the price based on options chosen in the form. all the options are recorded with the order and very easy to use. Very cool!

If you need to try Gravity Forms before buying a license, you can get the current open source copy here

I have a product with 1680 variations. How to resolve site speed?

@brunelu
Copy link

brunelu commented Apr 29, 2022

Hello Claudio,

Thank you for sharing this useful snippet - way better than the standard approach.
Do you know if there is a way to have Amazon's behavior instead?

So instead of showing "Sorry, no products matched your selection. Please choose a different combination.", to have the option to see the available options:
image

Here's the listing I am referring to:
https://www.amazon.com/OULUOQI-Stainless-Magnetic-Replacement-iWatch/dp/B099JF5S9Z/
Thank you!

Regards,
John

@nonye924
Copy link

nonye924 commented May 1, 2023

Product page is not loading after making changes to the product variation

The product page is not saving after i make changes to the product variation. I have more than 100 variations
I have attached a video. The cache has been cleared and the issue is still the same.

http://www.colourwarehouse.com/wp-content/uploads/2023/05/www_screencapture_com_2023-5-1_08_44.mp4

@impetudigital
Copy link

It worked correctly for 100 variations.
To be cautious and not to touch the "functions.php" file, I inserted this code through the WP Code plugin.

Thank you very much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment