Steve, thanks again for your reply. I did read through the link you provided previously and as near as I figure I have done what it and you recommended.
I did find a typ O in the image path for gravatars and changed it but still didn’t work.
I have placed your snippet in place of the original snippet but it isn’t working still. For some reason this won’t work on my local host (WAMP on my computer).
I do see the radio button and gravatar definition in the discussion settings but no image.
Your snippet with my type O correction is just below the “//Set the URL where the image file for your avatar is located” comment.
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_stylesheet_directory_uri() . '/images/gravatars/companylogo.png';
//Set the text that will appear to the right of your avatar in Settings>>Discussion
$avatar_defaults[$new_avatar_url] = 'Name of Company';
return $avatar_defaults;
}
Here is what I am seeing when viewing the page source:
<label><input type='radio' name='avatar_default' id='avatar_https://localhost/wordpress_site/wp-content/themes/childtheme/images/gravatars/companylogo.png' value='https://localhost/wordpress_site/wp-content/themes/childtheme/images/gravatars/companylogo.png' /> <img alt='' src='https://0.gravatar.com/avatar/ce17fea1f28435eab1dbf58be3d81870?s=32&d=http%3A%2F%2Flocalhost%2Fwordpress_site%2Fwp-content%2Fthemes%2Fchildtheme%2Fimages%2Fgravatars%2Fcompanylogo.png&f=y&r=g' srcset='https://0.gravatar.com/avatar/ce17fea1f28435eab1dbf58be3d81870?s=64&d=http%3A%2F%2Flocalhost%2Fwordpress_site%2Fwp-content%2Fthemes%2Fchildtheme%2Fimages%2Fgravatars%2Fcompanylogo.png&f=y&r=g 2x' class='avatar avatar-32 photo avatar-default' height='32' width='32' /> Name of Company</label><br />
Here is a screenshot:
https://www.bottlecaplure.ca/images/screen_savers/ScreenHunter_41-Sep.jpg
-
This reply was modified 7 years, 2 months ago by nootkan.
-
This reply was modified 7 years, 2 months ago by nootkan.
-
This reply was modified 7 years, 2 months ago by nootkan.