- 状态
- 已解决
- 报告针对
- WPML String Translation 3.1.0
- 解决于
- 3.1.1.
问题概述
如果您想翻译默认语言不是英语的字符串,您会看到翻译选定的字符串部分是空的,并且您无法将任何字符串添加到翻译篮中。
临时解决方法
作为临时解决方法,请在对您的网站进行完整备份后,将以下代码添加到functions.php文件中。
add_action('admin_head', 'wpml_admin_css');
function wpml_admin_css() {
echo '<style>
#icl-tr-opt tbody tr { display: table-row !important; }
</style>';
}