• Resolved brichem

    (@brichem)


    Hi.
    In a post with an image, I am not able to edit the image. No icon appears to give me this option when I click the image.
    If I deactivate either Black Studio or Page Builder, the problem goes away, and an edit icon appears in the corner of the image.

    I am running Version 2.1.5 of Black Studio, 1.5.3 of pagebuilder, and using WordPress 4.0

    After reviewing other entries in the forum related to the interaction of these two widgets and images, perhaps I should reinstall WordPress core files?

    Thanks so much!

    https://www.ads-software.com/plugins/black-studio-tinymce-widget/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Marco Chiesi

    (@marcochiesi)

    Please could you specify in which of the following circumstances the problem occurs:
    1. Image inside post/page added with default editor
    2. Image indide post/page added with Page Builder + BSTW
    3. Image inside widget added with BSTW (in widgets administration)

    Thread Starter brichem

    (@brichem)

    1.
    It occurs with the image inside a page added with the default editor.

    Just tested scenerio 2 and 3 and have same problem

    Plugin Author Marco Chiesi

    (@marcochiesi)

    I’m not able to reproduce the issue with the same WP/plugin versions, so I think there could be a conflict with a third plugin or the theme. Please try to disable other plugins and/or temporarily switch to the default WP theme. Also take a look at your browser javascript console and verify if any error is reported there. You may find further info on our FAQ page.

    Thread Starter brichem

    (@brichem)

    Ok, I disabled all plugins except BSTW and Page Builder.
    Problem still exists.

    I switched themes and all was fine.

    FYI, I am using Nirvana v0.9.9 by Cryout Creations.
    Thanks for your help.

    I will take up the matter with them, eh?

    Plugin Author Marco Chiesi

    (@marcochiesi)

    Yes, the problem should be fixed in Nirvana theme. In particular the problem is Undefined index: content_css in wp-content/themes/nirvana/admin/admin-functions.php.

    You need to change this

    function nirvana_dynamic_editor_styles($settings){
        $settings['content_css'] .= ",".admin_url('admin-ajax.php') ."/?action=dynamic_styles";
        return $settings;
    }

    into this

    function nirvana_dynamic_editor_styles($settings){
        if ( isset( $settings['content_css'] ) ) {
            $settings['content_css'] .= ",".admin_url('admin-ajax.php') ."/?action=dynamic_styles";
        }
        return $settings;
    }
    Thread Starter brichem

    (@brichem)

    Thanks Marco.
    That did it!
    You are brilliant!

    Much thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Conflict with page builder re:image edit’ is closed to new replies.