Temanızın functions.php sine en alta bunu ekleyin.

add_filter( 'woocommerce_checkout_fields' , 'telefon_zorunlu_yap' );

function telefon_zorunlu_yap( $fields ) {
    $fields['billing']['billing_phone']['required'] = true;
    return $fields;
}