• Resolved danniee001

    (@danniee001)


    After last update, I get a new entry in the admin panel called “Siteorigin” -> “Installer”. What is this and do I really need it? I don’t want to bloat my admin panel with more stuff.

    Regards

Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Support Andrew Misplon

    (@misplon)

    Hi danniee

    Thanks for posting and for your support; it’s most appreciated.

    The SiteOrigin Installer replaces our usage of TGM Plugin Activation to suggest plugins. TGM is occasionally misconfigured by third-party authors, potentially leading to an error. In the next release, we’ll introduce a setting at Settings > Page Builder: General to disable the Installer admin menu item. We’ll have the next release out within the next 48 to 72hrs.

    Thread Starter danniee001

    (@danniee001)

    Hi Andrew, appreciate the reply and the upcoming option for this. So, just to confirm. This is normal and not something wrong with my site?

    Plugin Support Andrew Misplon

    (@misplon)

    You’re most welcome.

    The admin menu item is added by the SiteOrigin Installer. Nothing is wrong with your site. We’ll add a setting to remove the menu item within the next few days.

    Thread Starter danniee001

    (@danniee001)

    Thank you sir ??

    Plugin Support Andrew Misplon

    (@misplon)

    Thanks for your understanding. We’ll follow-up after the next release. Chat then. Cheers ??

    Plugin Support Andrew Misplon

    (@misplon)

    Hi again. The next release with a setting to disable the SiteOrigin admin menu item is delayed by a few days. It’s possible to send a version allowing the menu item to be removed via a filter. The filter can be added via the Code Snippets plugin, a custom plugin, or a child theme. Please let me know if you’d like me to send that early release version.

    Thanks

    Andrew

    Thread Starter danniee001

    (@danniee001)

    Hi Andrew, that is not necessary. I appreciate the update and the support you give here. Very nice of you.

    Regards

    Plugin Support Andrew Misplon

    (@misplon)

    Thanks for your understanding and support; it’s most appreciated. We’ll be in touch next week. Cheers.

    Plugin Support Andrew Misplon

    (@misplon)

    Hi, the new setting is available at Settings > Page Builder > General. Thanks.

    Safety13

    (@safety13)

    Is it possible to uncheck the Site Origin Installer by default. Running your theme on Multisite setup and do not want have to go through dozens of sites to update?

    Plugin Contributor alexgso

    (@alexgso)

    Hi,

    You can disable the Installer by default by filtering siteorigin_add_installer. For example, the following PHP will change the default state to disabled:

    add_filter( 'siteorigin_add_installer', function() {
    	if( get_option( 'siteorigin_installer' ) === false ) {
    		return false;
    	}
    }, 11 );

    If you would like to add this script to your multisite but don’t have a method of adding PHP, I’ve prepared a plugin that you can install that adds the above code. You can download that plugin by clicking here. Once downloaded, open your Multisite plugin page and click Add New, Upload Plugin and upload siteorigin-installer-disable-by-default.zip.

    Kind regards,
    Alex

    Safety13

    (@safety13)

    Alex,

    Add as a function to the child theme. Works like a charm.

    Thanks!

    Plugin Contributor alexgso

    (@alexgso)

    Hi,

    It’s great to hear that helped! Please feel free to post a new thread if anything else comes up.

    Kind regards,
    Alex

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Siteorigin installer’ is closed to new replies.