cancel
Showing results for 
Search instead for 
Did you mean: 

How i can change "Estimated Total" to "Title" in Checkout

SOLVED

How i can change "Estimated Total" to "Title" in Checkout

I need to change the "Estimated Total" to "Title" in Checkout, Assist me, please. 
AAAAA.JPG

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How i can change "Estimated Total" to "Title" in Checkout

@5e48be49ecff7 ,

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 Smiley Happy 

View solution in original post

4 REPLIES 4

Re: How i can change "Estimated Total" to "Title" in Checkout

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

Re: How i can change "Estimated Total" to "Title" in Checkout

i have tried this, but changes are not showing up. Is there any other way ?

Re: How i can change "Estimated Total" to "Title" in Checkout

@5e48be49ecff7 ,

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 Smiley Happy 

Re: How i can change "Estimated Total" to "Title" in Checkout

thanks