- 状态
- 已解决
- 相关插件/主题
- Essential Addons for Elementor
- 主题标签
- Compatibility, Elementor Custom Widgets
问题概述
使用Essential Addons for Elementor 插件中的Team Member 小工具时,添加的弹窗动态链接在前端未被翻译,并且仍然指向原始语言的弹窗。
临时解决方法
在继续操作之前,请确保对您的网站进行完整备份。
- 打开主题的 functions.php 文件。
- 添加以下代码:
add_filter( 'wpml_pb_elementor_widget_dynamic_id_converters', function( $converters ) { $isTeamMember = WPMLFPRelation::propEq( 'widgetType', 'eael-team-member' ); $socialLinkLens = WPMLFPcompose( WPMLFPObj::lensProp( 'settings' ), WPMLFPObj::lensMappedProp( 'eael_team_member_social_profile_links' ), WPMLFPObj::lensPath( [ '__dynamic__', 'link' ] ) ); $converters[] = [ $isTeamMember, $socialLinkLens, 'popup', 'popup' ]; return $converters; } );