Kumar
Kumar

Reputation: 77

How to edit Billing Address Label to Shipping Address in the thank you page and customer email?

In my WordPress site after customer place an order a thank you page will be shown

This is my thank you page, at the bottom under customer details I want to edit billing address label to Shipping address enter image description here

This is my customer side email in this also at the bottom under customer details I want to change Billing address to Shipping Address enter image description here

I tried editing order/order-details-customer.php file and changed the following line from Billing to Shipping address but not working

<h3 class="woocommerce-column__title">
    <?php _e( 'Shipping address', 'woocommerce' ); ?>
</h3> 

Upvotes: 0

Views: 2532

Answers (2)

Ahmed Ginani
Ahmed Ginani

Reputation: 6650

Actually you need to do that change from email-addresses.php file inside email folder.

Go to email-addresses.php and change this line ,

<h3><?php _e( 'Billing address', 'woocommerce' ); ?></h3>

Upvotes: 1

Alice
Alice

Reputation: 1433

Instead of renaming the titles from admin panel give billing and shipping address same. As you are specifying shipping address, shipping means something.

Upvotes: 0

Related Questions