Home>Support>Limit available Widgets

Limit available Widgets

I want to limit the widgets in “Add Widgets” to only the widgets are necessary for a project.
Is it possible to customize it somehow like in the “siteoriging widgets bundle” ?

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 9 years, 3 months ago Paul

    To remove all or specific widgets you can use this:

    function so_widgets_filter( $widgets )
    {
    	$widgets = array(); // delete all widgets
    	return $widgets;
    }
    add_filter('siteorigin_panels_widgets', 'so_widgets_filter');
    

    To just remove recommended widgets:

    remove_filter('siteorigin_panels_widgets', 'siteorigin_panels_add_recommended_widgets');
    

    Hope that helps! It worked great for me.

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More