Magento 2: Change Text On Checkout Page
To Change label, You need to copy following file to your theme folder.
<magento root>/vendor/magento/module-checkout/view/frontend/web/js/view/shipping.js
Now copy this file to following.
<magento root>/app/design/frontend/`<vendor>`/`<theme>`/Magento_Checkout/web/js/view/shipping.js
Please follow proper directory structure. Now Open shipping.js file and find initialize function near about line no 76.
In that function you need to replace line no 88.
$t('Shipping') to $t('Shipping/Billing Address')
After replacing do not forget to regenerate static content deployment using following command.
php bin/magento setup:static-content:deploy
1) The easiest way is that we translate this text on our custom module or theme:
- http://devdocs.magento.com/guides/v2.0/frontend-dev-guide/translations/xlate.html
- http://devdocs.magento.com/guides/v2.0/frontend-dev-guide/translations/translate_practice.html
2) We also can override the template: vendor/magento/module-checkout/view/frontend/web/template/shipping.html
.