WPML
상태
개발자가 해결함
관련 플러그인/테마
BeTheme
주제 태그
Compatibility

문제 개요

BeTheme의 BeBuilder 라이브 에디터를 사용할 때 WPML의 고급 번역 에디터를 사용하여 번역한 콘텐츠는 성공적으로 번역되지만, 페이지의 디자인이 번역에 복사되지 않습니다.

임시 해결 방법

진행하기 전에 사이트를 전체 백업하세요.


  1. …/wp-content/themes/betheme/functions/builder/class-mfn-builder-front.php 파일을 여세요.

  2. 146번째 줄을 찾아 다음을:
    $dir = wp_upload_dir()['basedir'] . $path;
    
    if( get_post_meta($this->post_id, 'mfn-page-local-style', true) && file_exists($dir) ){

    다음으로 바꾸세요:

    $css_file_path = '/betheme/css/post-'. $this->post_id .'.css';
    $dir = wp_upload_dir()['basedir'] . $css_file_path;
    
    if( get_post_meta($this->post_id, 'mfn-page-local-style', true) && file_exists($dir) ){

알려진 모든 문제 →