Skip to content

Instantly share code, notes, and snippets.

@shreyans94
Created January 23, 2018 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shreyans94/7e8da767176feb1dda5966c8f0dcb79f to your computer and use it in GitHub Desktop.
Save shreyans94/7e8da767176feb1dda5966c8f0dcb79f to your computer and use it in GitHub Desktop.
WooCommerce Variations Ajax Fix
function iconic_wc_ajax_variation_threshold( $qty, $product ) {
return 50;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'iconic_wc_ajax_variation_threshold', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment