• Resolved Dustin L.

    (@bigbugsy)


    How can I remove QuadLayers News from the WordPress dashboard? This is spam and has nothing to do with the description of the plugin.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author quadlayers

    (@quadlayers)

    Hello @bigbugsy

    You can try this code

    <?php
    
    // Function to remove the QuadLayers News widget
    function remove_quadlayers_news_widget() {
        remove_meta_box('wp-dashboard-widget-news', 'dashboard', 'normal');
    }
    
    // Hook the function to the wp_dashboard_setup action
    add_action('wp_dashboard_setup', 'remove_quadlayers_news_widget');

    • This reply was modified 1 year, 7 months ago by quadlayers.

    All you have to do to remove ANY widget from the WordPress dashboard is to click the “Screen Options” tab in the upper right-hand corner of the dashboard and UNcheck the box for the widget. This goes for the Quadlayers “News” widget as well. 2 second fix. ??

    Plugin Author quadlayers

    (@quadlayers)

    Thanks @geek-goddess

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove QuadLayers News?’ is closed to new replies.