- 상태
- 해결됨
- 관련 플러그인/테마
- RealHomes
문제 개요
새 글을 작성하거나 기존 글을 편집할 때, 오른쪽 사이드바에서 WPML 언어 탭 콘텐츠가 사라지고 0만 표시됩니다.
임시 해결 방법
다음 임시 해결 방법을 진행하기 전에 웹사이트를 백업하세요:
- wp-content/themes/realhomes/framework/functions/design-variations-handler.php 파일을 여세요
- 다음 스니펫을:
$wpml_current_lang = apply_filters( 'wpml_current_language', null ); if ( $wpml_current_lang ) { $ajax_url = add_query_arg( 'wpml_lang', $wpml_current_lang, $ajax_url ); }다음과 같이 교체하세요:
$wpml_current_lang = apply_filters( 'wpml_current_language', null ); if ( $wpml_current_lang && ! is_admin() ) { $ajax_url = add_query_arg( 'wpml_lang', $wpml_current_lang, $ajax_url ); }