remove rankmath overview in dashboard

#348903
  • Resolved melvin wang
    Rank Math free

    Hi,

    I would like to remove this from dashboard
    https://imgur.com/a/lbOg0kk.

    The code I added in function.php is as below:

    
    function remove_dashboard_meta() {
       	remove_meta_box('rank_math_dashboard_widget', 'dashboard', 'side'); //Removes "RM from Dashboard'	   
    }
    add_action('admin_init', 'remove_dashboard_meta');

    But it doen’t work. can you please guide me how to remove it?

    TQ

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    Thanks for contacting us and sorry for any inconvenience that might have been caused due to that.

    You can remove the Overview widget by unchecking the Rank Math Overview option in the Screen Options:

    Hope this helps. Let us know if you need any other assistance.

    Hello,

    I would want to remove it not using code, as my client found it’s messy. I tried to remove all widget using the similar code above, all are good except RM. Please guide me to remove entire RM overview with the code please.

    TQ

    Hello,

    You can use the following filter to unregister our dashboard widget:

    
    function remove_rankmath_dashboard_widget() {
        global $wp_meta_boxes;
        unset($wp_meta_boxes['dashboard']['normal']['high']['rank_math_dashboard_widget']);
    }
    
    add_action('wp_dashboard_setup', 'remove_rankmath_dashboard_widget', 11 );
    

    Hope this helps solve your issues.

    Don’t hesitate to get in touch if you have any other questions.

    Thanks you. It’s helpful

    Anas
    Rank Math business

    Hello,

    Glad that helped.

    If you have any questions in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)

The ticket ‘remove rankmath overview in dashboard’ is closed to new replies.