Created
December 2, 2016 13:30
-
-
Save wpflippercode/6c9aa8d02d52201fc63b87b6c7dffd85 to your computer and use it in GitHub Desktop.
Remove Profile Picture section on Edit Profile Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('admin_head','fc_remove_profile_image'); | |
function fc_remove_profile_image(){ | |
echo '<script> | |
jQuery(document).ready(function(){ | |
jQuery("tr.user-profile-picture").remove(); | |
}); | |
</script>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
works great!