You can remove options such as Notifications and Privacy from the Account Options section of UsersWP.
To accomplish this, use the following code snippet:Â
add_filter('uwp_account_available_tabs', 'uwp_account_available_tabs_cb');
function uwp_account_available_tabs_cb($tabs){
unset($tabs['notifications']);
unset($tabs['privacy']);
return $tabs;
}
We recommend using the Code Snippets plugin to add snippets to your site.