- 상태
- 개발자 대기 중
- 관련 플러그인/테마
- Unlimited Elements for Elementor
- 주제 태그
- Compatibility
문제 개요
WPML을 사용하는 사이트에서 Unlimited Elements for Elementor 플러그인의 Post Carousel 위젯을 사용할 때, 위젯이 번역된 글을 가져오지 못하여 번역된 페이지에서 콘텐츠 표시 문제가 발생합니다.
임시 해결 방법
진행하기 전에 사이트의 전체 백업을 완료했는지 확인하세요.
- 테마의 functions.php 파일을 여세요.
- 다음 코드를 추가하세요:
// WPML Workaround for compsupp-7126 add_filter( 'elementor/frontend/before_render', 'wpml_compsupp7126_filter_ucaddon_post_carousel'); function wpml_compsupp7126_filter_ucaddon_post_carousel($element) { if ( 'ucaddon_post_carousel' !== $element->get_name() ) { return; } $settings = $element->get_settings(); if ( isset( $settings['post_manual_select_post_ids'] ) && is_array( $settings['post_manual_select_post_ids'] ) ) { foreach ( $settings['post_manual_select_post_ids'] as $key => $id ) { $post_type = get_post_type( $id ); if ( ! $post_type ) { continue; } $id = apply_filters( 'wpml_object_id', $id, $post_type, true ); unset($settings['post_manual_select_post_ids'][$key]); $settings['post_manual_select_post_ids'][] = $id; } $element->set_settings( 'post_manual_select_post_ids', $settings['post_manual_select_post_ids'] ); } }