• Resolved cbrandon

    (@cbrandon)


    I know how to disable the SiteOrigins Page Builder News widget from the Super Admin Dashboard view by deselecting it in the Dashboard Screen Options. HOWEVER THIS ONLY removes it from Super Admin’s Dashboard view it does not remove it from ALL OTHER USER TYPE dashboard views.

    I do not want the SiteOrigins Page Builder News Widget displaying on any dashboards for any users, how can this be disabled for ALL User Types?

    Thanks!

    • This topic was modified 6 years, 5 months ago by cbrandon.
Viewing 1 replies (of 1 total)
  • Plugin Contributor alexgso

    (@alexgso)

    Hi cbrandon,

    You can disable the SiteOrigin Page Builder News box by adding some PHP to your website. If you don’t have a method of adding PHP to your website (such as a child theme), please install Code Snippets. Once installed, please navigate to WP Admin > Snippets > Add New and add the following PHP:

    function so_remove_dashboard_news() {
    	remove_meta_box( 'so-dashboard-news', 'dashboard', 'normal' );
    }
    add_action( 'admin_menu', 'so_remove_dashboard_news' );

    Click Save Changes & Activate.

    If you do have a method of adding PHP to your website, please add the above PHP to your website.

Viewing 1 replies (of 1 total)
  • The topic ‘How Can I Remove SiteOrigins Page Builder News Widget from USER Dashboard?’ is closed to new replies.