This snippet allows you to completely remove the place order button if there are no available shipping methods on the checkout.
function ecommercehints_disable_place_order_if_no_shipping_methods() {
$shipping_methods = WC()->shipping->get_shipping_methods();
if (!$shipping_methods) {
remove_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', 20 );
}
}
ecommercehints_disable_place_order_if_no_shipping_methods();