• Resolved Dave

    (@deeve007)


    When ACF activated the WordPress WYSIWYG editor on the page edit screen is not showing for other languages, only the default. So I can enter in a title in different languages but no content.

    It works fine if ACF is deactivated. I was under the impression this plugin worked with ACF without issues?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Alex Gor

    (@alexgff)

    From
    https://www.ads-software.com/plugins/wpglobus/

    Plugin Compatibility
    WPGlobus is compatible with many plugins, including but not limited to:

    ACF – Advanced Custom Fields. WPGlobus Plus premium add-on is required for WYSIWYG fields support,

    Thread Starter Dave

    (@deeve007)

    This is the WordPress default WYSIWYG field I’m having issues with, not an ACF WYSIWYG field, but the issue is only occurring when ACF is active.

    Plugin Contributor Alex Gor

    (@alexgff)

    I have just checked on my test sites. It works well.
    I think in your case some plugins or theme can to add style ‘display:none’ to WP editors for extra languages.
    To fix it you can use filter in file functions.php of active theme.

    
    add_filter( 'wpglobus_postdivrich_style', 'filter__wpglobus_postdivrich_style' );
    function filter__wpglobus_postdivrich_style( $language ) {
    	return 'display:block;';
    }
    
    Thread Starter Dave

    (@deeve007)

    Almost worked – need to add “!important” to the end of that CSS.

    Thank you.

    Hi Dave&&Alex Gor,

    Awesome it’s working.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Apparant ACF conflict’ is closed to new replies.