Hi i am trying to Change a text in woo commerce checkout page from 'Shipping' to 'Delivery' from Your Order
Section. i tried open the core files from the FTP to try to change it manually but i couldn't find that text anywhere. Any help Where can i get and change it?
Thanks
If you copy the files you need to edit from
wp-content/plugins/woocommerce/templates
towp-content/themes/*your_theme*/woocommerce
. That way you can override the code without touching the plugins code.You will find the code you need to change will be under
wp-content/themes/*your_theme*/woocommerce/checkout
, although if you want to change all instances of the word Shipping you will need to change more of the templates.List of files that contain Shipping are
woocommerce/cart/cart-shipping.php
woocommerce/cart/cart-totals.php
woocommerce/cart/shipping-calculator.php
woocommerce/checkout/form-billing.php
woocommerce/checkout/form-login.php
woocommerce/emails/email-addresses.php
woocommerce/emails/plain/email-addresses.php
woocommerce/myaccount/form-edit-address.php
woocommerce/myaccount/my-address.php
woocommerce/order/order-details.php
There is probably more so you'll have to do a search in the other template files.
Did you tried like this below:
Please see this link too: http://businessbloomer.com/woocommerce-edit-translate-shipping-handling-cart-checkout-page/ for more details
I used the solution by @Rahul S but I added the next code to change specific delivery text on cart and checkout.
I added this code to the function.php on my theme. It work on cart page and checkout page
You can replace ‘put-here-you-domain-i18n’ by you domain, by default it is ‘woocommerce’ by I recommend change it.
The code to add is:
I hope help you.
You can see this.