Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created December 2, 2016 13:30
Show Gist options
  • Save wpflippercode/6c9aa8d02d52201fc63b87b6c7dffd85 to your computer and use it in GitHub Desktop.
Save wpflippercode/6c9aa8d02d52201fc63b87b6c7dffd85 to your computer and use it in GitHub Desktop.
Remove Profile Picture section on Edit Profile Page
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>';
}
@firstprimecrypto
Copy link

works great!

@jayjayel
Copy link

jayjayel commented Sep 9, 2020

Just worked for me. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment