Magento 2从数据库中删除内联转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento 2从数据库中删除内联转换相关的知识,希望对你有一定的参考价值。
我在Magento做的内联翻译打破了,因为我使用了'&'符号。现在,每当我编辑这个翻译时,什么都没发生。
我想从数据库中删除内联翻译,我该怎么做?
代码中的原始文本应为“审核和付款”
答案
内联翻译存储在表translation
中。使用您喜欢的SQL客户端并从那里删除行。
select * from translation where string like '<orig string>%'
要么
select * from translation where string like '<your bad text search>%'
然后
delete from translation where key_id = <taken from query above>
您需要运行Magento命令来重新部署静态或清理/刷新缓存以使更改生效。
另一答案
//禁用管理员的内联翻译并检查。
store->configuaration->Advanced Tab->Developer
->查找“翻译内联”选项
以上是关于Magento 2从数据库中删除内联转换的主要内容,如果未能解决你的问题,请参考以下文章