trey
2/21/2018 - 3:05 PM

Adjust WooCommerce Variation Threshold

Adjust WooCommerce Variation Threshold

<?php
function soflyy_change_threshold( $amount, $product ) {
    return 100; // change this to the amount of variations you want to load
}
add_filter( 'woocommerce_ajax_variation_threshold', 'soflyy_change_threshold', 10, 2 );