Reputation: 77
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
This is my customer side email in this also at the bottom under customer details I want to change Billing address to Shipping Address
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
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
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