Home / Admin / MemberPress: Remove MemberPress Weekly Stats Widget from WordPress Dashboard
Duplicate Snippet

Embed Snippet on Your Site

MemberPress: Remove MemberPress Weekly Stats Widget from WordPress Dashboard

This code snippet removes the MemberPress Weekly Stats widget from the WordPress admin dashboard. This can help declutter the dashboard and hide unnecessary information from users.

Code Preview
php
<?php
function mepr_remove_dashboard_widgets() {
  global $wp_meta_boxes;
  // Unset the MemberPress Weekly Stats widget from the dashboard
  unset( $wp_meta_boxes['dashboard']['normal']['core']['mepr_weekly_stats_widget'] );
}
// Hook the function into the WordPress dashboard setup action
add_action( 'wp_dashboard_setup', 'mepr_remove_dashboard_widgets', 99 );

Comments

Add a Comment