An inline translation I did in Magento broke because I used a ‘&’ symbol. Now, whenever I edit this translation nothing happends.
I want to remove the inline translation from the database, how would I do that?
The original text in the code shoudl be “Review & Payment”
2
Answers
//Disable inline translation from admin and check.
store->configuaration->Advanced Tab->Developer
->find “Translate Inline” optionThe inline translation is stored in the table
translation
. Use your favorite SQL client and delete the row from there.or
and then
You need to either run the Magento command to redeploy statics or clean/flush caches to make the changes take effect.