I need to change the "Estimated Total" to "Title" in Checkout, Assist me, please.
Solved! Go to Solution.
enable translate inline from Magento backend
turn on developer mode
bin/magento deploy:mode:set developer
Navigate to
Store -> Configuration -> Advanced -> Developer
Translate Inline : Enabled for Storefront :: YES
now go to checkout where you want to update the text.
Update the text and save.
REF: https://docs.magento.com/user-guide/system/translate-inline.html
kindly accept as a Solution if this works for you and give Kudos
CSV is the best way to do that,
Create or edit CSV file of the theme :
app/design/frontend/[Vendor]/[Theme]/i18n/en_US.csv
add below text in csv:
Estimated Total,Total
Then run below commands:
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
php bin/magento cache:flush
i have tried this, but changes are not showing up. Is there any other way ?
enable translate inline from Magento backend
turn on developer mode
bin/magento deploy:mode:set developer
Navigate to
Store -> Configuration -> Advanced -> Developer
Translate Inline : Enabled for Storefront :: YES
now go to checkout where you want to update the text.
Update the text and save.
REF: https://docs.magento.com/user-guide/system/translate-inline.html
kindly accept as a Solution if this works for you and give Kudos
thanks