Home > Enterprise >  How to custom address detail on billing address in Woocommerce?
How to custom address detail on billing address in Woocommerce?

Time:10-01

How to change this line of code about billing address in Woocommerce and edit it. Like Add icon and position for all address that user save.

<address>
    <?php
        echo $address ? wp_kses_post( $address ) : esc_html_e( 'You have not set up this type of address yet.', 'woocommerce' );
    ?>
</address>

CodePudding user response:

You can use woocommerce_checkout_fields() hook for edit labels.

  • Related