콘텐츠로 건너뛰기 사이드바로 건너뛰기

Open

Topic Tags: Compatibility

Overview of the issue

When using the WPML’s duplication feature with Bricks templates, you will encounter that changes in default language are not being reflected in other languages when the WPML Media Translation plugin is active.

Workaround

Please, make sure of having a full site backup of your site before proceeding.

Part I

  • Open …/wp-content/plugins/wpml-media-translation/classes/media-translation/class-wpml-media-custom-field-images-translation.php file.
  • Look for line 56.
  • Just after:
    		$setting          = $settings_factory->post_meta_setting( $meta_key );
    
  • Add:
    	// Workaround part 1
    	$bricks_meta_keys = array(
    		'_bricks_template_type',
    		'_bricks_page_content_2',
    		'_bricks_editor_mode',
    		'_bricks_template_settings',
    	);
    
    	if ( strpos( $meta_key, 'bricks' ) !== false ) {
    		return;
    	}
    

Part II

  • Open …/wp-content/plugins/wpml-media-translation/classes/media-translation/class-wpml-media-set-posts-media-flag.php file.
  • Look for line 128.
  • Just after:
    		$post_with_media_files = $this->post_with_media_files_factory->create( $post_id );
    
  • Comment the following part:
    		// Workaround part 2
    		/*if ( $post_with_media_files->get_media_ids() ) { // it seems that this line is causing this issue
    			update_post_meta( $post_id, self::HAS_MEDIA_POST_FLAG, 1 );
    		} else {
    			delete_post_meta( $post_id, self::HAS_MEDIA_POST_FLAG );
    		}*/
    

답글 남기기

주제에 집중하고 다른 사람을 존중해 주세요. 이 게시물과 관련 없는 문제에 도움이 필요하면 지원 포럼을 사용하여 채팅을 시작하거나 티켓을 제출하세요.

다음 태그를 사용할 수 있습니다:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>