Just found a solution on GitHub for anyone who has this problem in the future, https://github.com/woothemes/woocommerce/issues/5137
Here’s the code…
/* Display Variation Selections on variable products with empty price */
add_filter(‘woocommerce_variation_is_visible’, ‘product_variation_always_shown’, 10, 2);
function product_variation_always_shown($is_visible, $id){
return true;
}
Works perfectly. Thank’s a million MadSpaniard!!!