Disable variations on woo commerce if out of stock

Managed to solve my own issue.

Simply paste the following into functions.php

    function custom_wc_ajax_variation_threshold( $qty, $product ) {
    return 10;
}

add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );

Then change the ‘return 10;’ to however many variations you have.

Please note this may slow down page loading time depending on your hosting.