Please attach some links or wait until Monday when we open our support forum so we can have a look.
If you have uploaded a profile photo, surely that custom photo will appear in your profile.
You have not given any links, so I can’t guess really. 🙂
Thank you
It’s an internal website, so unfortunately can’t give a link. I set the default photo in the admin screens, so I thought it would reflect on the profiles, but it looks like the default gravatar replaces whatever I upload. I could try uploading from the front-end, but I wanted everyone to have a specific default photo.
Default gravatar (if enabled) will be used instead of a user has no photo. If you wish to enforce the default photo, please disable “use gravatars” from settings. Hope that helps 🙂
I think I’ve fixed it! I used the following code in my functions file –
add_filter( ‘avatar_defaults’, ‘new_default_avatar’ );
function new_default_avatar ( $avatar_defaults ) {
//Set the URL where the image file for your avatar is located
$new_avatar_url = get_bloginfo( ‘template_directory’ ) . ‘/images/new_default_avatar.png’;
//Set the text that will appear to the right of your avatar in Settings>>Discussion
$avatar_defaults[$new_avatar_url] = ‘Your New Default Avatar’;
return $avatar_defaults;
}
…then linked my profile photo into this. In the discussion menu I can now click on ‘Your New Default Avatar’ and everything shows correct!