Skip to content

Instantly share code, notes, and snippets.

@raphaelkross
Created August 4, 2016 23:02
Show Gist options
  • Save raphaelkross/ef47614cac5b57d2fe5ccd051f5d41cf to your computer and use it in GitHub Desktop.
Save raphaelkross/ef47614cac5b57d2fe5ccd051f5d41cf to your computer and use it in GitHub Desktop.
Increase Variation per Page number
function custom_wc_ajax_variation_threshold( $qty, $product ) {
return 10;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment