• Resolved Adrian

    (@adrian2k7)


    Hello,

    I don’t think the implementation of an external service was a good idea.

    • It is very invasive, as it adds a totally new functionality to the editor,
    • and therefor more than a slider should provide

    Thanks,

    Adrian

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @adrian2k7 ,

    Thanks for reaching out. Many users have found it helpful to have some pre-made patterns for their sliders, but I totally understand that it isn’t useful for everyone.

    You have two options to easily remove this from the editor. The steps are also listed here: https://extendify.com/how-to-disable-the-extendify-library/

    Disable Extendify via the preferences menu

    1. Open the block editor by going to any page or post.
    2. Click the three dots at the top right of the page to open the preferences menu
    3. Click the button that says ‘Disable Extendify’ under Plugins

    This will remove the library button from the editor for any user that chooses to disable Extendify. It can be enabled again by clicking the ‘Enable Extendify’ button.

    Installing an mu-plugin

    f you wish to remove the Extendify library from an entire site, you can add the following as an mu-plugin. Note, this must be added as an mu-plugin and not added to the theme’s functions.php file.

    add_filter('extendifysdk_load_library', '__return_false');

    Let us know if you need anything else. Thanks!

    OK, for anyone else that needs / wants to remove extendify completely and has not come across mu-plugins before:

    Here and here is some background on mu-plugins. Together with information in these instructions, you can piece together the steps to remove the extendify library completely. They are as follows:

    1. Create a folder / directory called mu-plugins in the wp-content folder / directory of your site, using FTP or cpanel.

    2. Create a file as follows:

    <?php
    /*
      Plugin Name: My custom actions and filters
      Plugin URI: https://yoursite.com
      Description: MU-plugin for custom actions and filters for yoursite.com
      Version: 1.0
      Author: Your name
      Author URI: https://yoursite.com
    */
    
    add_filter('extendifysdk_load_library', '__return_false');

    3. Save it as my-mu-plugin.php and place it in the mu-plugins folder /directory that you created in step 1.

    4. Load a page on the site and check that extendify has gone.

    Just to be clear, this is not “resolved” yet. There continue to be additions to extendify with no easy opt out for general users.

    Now resolved, after devs added a disable button

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Please remove “Library”’ is closed to new replies.