- 상태
- 개발자가 해결함
- 보고된 제품
- WPML Multilingual for BuddyPress and BuddyBoss 1.7.0
- 해결된 버전
- BuddyBoss Platform 2.5.70
- 관련 플러그인/테마
- BuddyBoss Platform
- 주제 태그
- Compatibility
문제 개요
BuddyBoss 테마를 사용할 때 사용자 프로필 > 포럼 페이지의 “내 토론” 및 “내 답글” 섹션에서 보조 언어로 번역된 포럼 주제의 콘텐츠가 표시되지 않습니다. 즉, 사용자가 번역된 포럼 주제에 댓글을 남긴 경우, 번역된 버전에서 프로필을 볼 때 해당 상호 작용이 표시되지 않습니다.
임시 해결 방법
계속 진행하기 전에 사이트의 전체 백업을 수행하세요.
- 테마의 functions.php 파일에 다음 스니펫을 추가하세요:
// WPML Workaround for compsupp-6425 function wpml_compsupp6425_fix_query_in_user_profile( $r ) { if ( class_exists('Sitepress') && isset( $r['post_parent'] ) && $r['post_parent'] === 'any' ) { $r['post_parent'] = ''; } return $r; } add_filter( 'bbp_after_has_topics_parse_args', 'wpml_compsupp6425_fix_query_in_user_profile' ); add_filter( 'bbp_after_has_replies_parse_args', 'wpml_compsupp6425_fix_query_in_user_profile' );