WPML
状态
已解决
相关插件/主题
Elementor

问题概述

如果您在 Elementor 中有一个包含一些内容的简码小工具,并使用 WPML 的翻译编辑器翻译页面,则该简码内容将无法进行翻译。

临时解决方法

我们正在努力修复此问题。在此期间,您可以通过将此代码片段添加到主题的 functions.php 文件中来解决此问题。

add_action('init', function (){
add_filter( 'wpml_elementor_widgets_to_translate', 'shortcode_widget_registration' );
});
 
/**
* Translate Shortcodes widget by elementor
* @param array $widgets
* @return array
*/
function shortcode_widget_registration($widgets) {
$widgets['shortcode'] = [
'conditions' => ['widgetType' => 'shortcode'],
'fields' => [
[
'field' => 'shortcode',
'type' => __('Enter your shortcode', 'sitepress'),
'editor_type' => 'AREA'
],
 
],
];
 
return $widgets;
}

完成此操作后,在原始语言中编辑页面,然后更新翻译,您会发现简码小工具内容已可供翻译。

所有已知问题 →