• Resolved Farbweiss

    (@farbweiss)


    Hello Team,
    I really like your ex “Ultimate Addons for Gutenberg” Plugin. But in the last version you added this “AI Assistant” Link in the top toolbar. Not cool! It is of no use – until I choose to use your “AI Service”.

    It is ok to have this ad-link (AI-Features) in the sidebar under “Spectra”. But a second time next to “welcome user” ?!? No. Please add a way to get rid of this asap. It is confusing for the users in the backend.
    Please provide me with an unregister code snippet for my functions.php until you get this sorted in the next version.
    Thanks in advance!

    PS: I am a happy Brainstorm Force customer since 2017 and a “Business Toolkit” subscriber – but for some projects we just need the free Spectra plugin without any addon services ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • !Benni

    (@benniledl)

    Hey, not a spectra dev but here is how I did it:

    add_action( 'wp_before_admin_bar_render', function(){
    	
            global $wp_admin_bar;
            $wp_admin_bar->remove_node('zip-ai-assistant');
        
    });
    • This reply was modified 10 months ago by !Benni.
    !Benni

    (@benniledl)

    Sorry, copied some wrong code in there,

    this is correct now:

    add_action( 'wp_before_admin_bar_render', function(){
        global $wp_admin_bar;
        $wp_admin_bar->remove_node('zip-ai-assistant');
    });
    Thread Starter Farbweiss

    (@farbweiss)

    Hey @benniledl
    thanks a lot! This works just fine ??

    karlemilnikka

    (@karlemilnikka)

    You can also get rid of all the Zip AI bloatware by adding this snippet to your child-theme’s functions.php file. (@farbweiss and @benniledl)

    add_filter( 'zip_ai_load_library', '__return_false' );
    Thread Starter Farbweiss

    (@farbweiss)

    @karlemilnikka: Thanks a lot! What part exactly is the snippet removing? If I just add that filter I still get the AI Assistant Link in the top bar…

    karlemilnikka

    (@karlemilnikka)

    @farbweiss Interesting. Maybe it’s because I first disabled all Zip AI bloatware from Spectra’s WP-Admin settings before I added the snippet. If so, it’s too bad. There should of course be an easy way to just get rid of it.

    (Or even better, it should be made available on an opt-in basis.)

    Thread Starter Farbweiss

    (@farbweiss)

    karlemilnikka
    You mean this settings?

    -> these are not easy to find. Will try it.
    Update: Yes it seems to work with the settings, too. Anyway I’ll keep both snippets AND the settings ??

    have a great day!

    tastymouse

    (@tastymouse)

    @farbweiss where did you find these settings?

    Edit: I found it thanks to this video: https://www.youtube.com/watch?v=KZ5SJKw9fns

    Plugin Support mohsinbsf

    (@mohsinbsf)

    Hi @farbweiss,

    It seems your issue is fixed. I am going to mark this thread resolved. Please feel free to open a new thread if you face any other issues.

    Have a nice day!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Unwanted “AI Assistant” Link in Top-Toolbar. How to get rid of this?!?’ is closed to new replies.