Fatura adresi istenirken ülke soruluyor.Bunun temanın hangi sayfasında istendiğini buldum ancak bunu sorunsuz olarak nasıl kaldırabilirim ?


<div class="woocommerce-billing-fields">
<?php if ( wc_ship_to_billing_address_only() && WC()->cart->needs_shipping() ) : ?>

<h3><?php esc_html_e( 'Fatura &amp; Kargo', 'woocommerce' ); ?></h3>

<?php else : ?>

<h3><?php esc_html_e( 'Fatura detayları', 'woocommerce' ); ?></h3>

<?php endif; ?>

<?php do_action( 'woocommerce_before_checkout_billing_form', $checkout ); ?>

<div class="woocommerce-billing-fields__field-wrapper">
<?php
$fields = $checkout->get_checkout_fields( 'billing' );

foreach ( $fields as $key => $field ) {
if ( isset( $field['country_field'], $fields[ $field['country_field'] ] ) ) {
$field['country'] = $checkout->get_value( $field['country_field'] );
}
woocommerce_form_field( $key, $field, $checkout->get_value( $key ) );
}
?>
</div>

<?php do_action( 'woocommerce_after_checkout_billing_form', $checkout ); ?>
</div>