You can remove options such as
Notifications and Privacy from the Account Options section of UsersWP.
To accomplish this, simply 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 free WP plugin to add code snippets to your site.