0
votes

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> 
2

2 Answers

1
votes

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>
0
votes

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