MarcinSz

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Error message appearing on page editor #47012
    MarcinSz
    Participant

    it is caused by

    // Synchronizing the tinymce width with the content width
    add_filter(‘tiny_mce_before_init’, ‘nirvana_dynamic_editor_styles’, 10);
    function nirvana_dynamic_editor_styles($settings){
    $settings[‘content_css’] .= “,”.admin_url(‘admin-ajax.php’) .”/?action=dynamic_styles”;
    return $settings;
    }

    from nirvana/admin/admin-functions.php (in WP4.8 there were changes in TinyMCE AFAIK – perhaps Nirvana need a fix)

    MarcinSz
    Participant

    it is caused by

    // Synchronizing the tinymce width with the content width
    add_filter(‘tiny_mce_before_init’, ‘nirvana_dynamic_editor_styles’, 10);
    function nirvana_dynamic_editor_styles($settings){
    $settings[‘content_css’] .= “,”.admin_url(‘admin-ajax.php’) .”/?action=dynamic_styles”;
    return $settings;
    }

    from nirvana/admin/admin-functions.php (in WP4.8 there were changes in TinyMCE AFAIK – perhaps Nirvana need a fix)

Viewing 2 posts - 1 through 2 (of 2 total)