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 );