Hi,
We can disable profile page option for wordpress blog. To do that we need to modify wp-admin/profile.php file as this:
define('IS_PROFILE_PAGE', true);
Change to:
define('IS_PROFILE_PAGE', false);
That’s it!

Hi,
We can disable profile page option for wordpress blog. To do that we need to modify wp-admin/profile.php file as this:
define('IS_PROFILE_PAGE', true);
Change to:
define('IS_PROFILE_PAGE', false);
That’s it!
Notes