- 상태
- 미해결
- 관련 플러그인/테마
- Premium Addons for Elementor
- 주제 태그
- Compatibility, Elementor Custom Widgets
문제 개요
Premium Addons for Elementor 버튼을 사용하여 Elementor 팝업을 트리거할 때 보조 언어에서 동적 링크가 올바르게 작동하지 않습니다. 번역된 팝업 콘텐츠를 표시하는 대신 원본 언어 콘텐츠가 표시됩니다. 이 문제는 Elementor의 기본 버튼 위젯에서는 발생하지 않습니다.
임시 해결 방법
진행하기 전에 전체 사이트 백업을 완료했는지 확인하세요.
- 테마의 functions.php 파일을 여세요.
- 다음 스니펫을 추가하세요:
// WPML Workaround for compsupp-7847 add_filter( 'wpml_pb_elementor_widget_dynamic_id_converters', function( $converters ) { $isButton = WPMLFPRelation::propEq( 'widgetType', 'premium-addon-button' ); $buttonLinkLens = WPMLFPObj::lensPath( [ 'settings', '__dynamic__', 'premium_button_link' ] ); $converters[] = [ $isButton, $buttonLinkLens, 'popup', 'popup' ]; return $converters; } );