Find Answers and Get Support › Forums › Cera – Intranet & Community Theme › Theme Customizer › I just want to avatar mystery man
- This topic has 3 replies, 2 voices, and was last updated 4 years, 10 months ago by
Themosaurusrex.
-
AuthorPosts
-
meeeParticipant@2tara
- 23 Topics
- 54 Posts
I have tried the snippet the you guys have provided me. Thanks you
/**
* Changing the default Cera avatars.
*/
if ( function_exists( ‘buddypress’ ) ) {
if ( ! class_exists( ‘Youzer’ ) ) {
define( ‘BP_AVATAR_DEFAULT’, ‘YOURWEBSITE/SOME-DIRECTORIES/user-avatar.png’ );
define( ‘BP_AVATAR_DEFAULT_THUMB’, ‘YOURWEBSITE/SOME-DIRECTORIES/user-avatar-thumb.png’ );
}
}Now there is no picture at all. I have tried avatar custom plugins that do not work. I have tried other snippets. I just want the default mystery man. Is this impossible with the Cera theme unless you know how to write code. What can I do??????
May 25, 2020 at 07:51 #13039meeeParticipant@2tara- 23 Topics
- 54 Posts
I got it….Thanks
/**
* Changing the default Cera avatars.
*/
if ( function_exists( ‘buddypress’ ) ) {
if ( ! class_exists( ‘Youzer’ ) ) {
define( ‘BP_AVATAR_DEFAULT’, ‘https://qtruth.site/wp-content/uploads/2020/05/qavatar.png’ );
define( ‘BP_AVATAR_DEFAULT_THUMB’, ‘https://qtruth.site/wp-content/uploads/2020/05/qavatar-thumb.png’ );
}
}May 26, 2020 at 09:33 #13105@themosaurusrex- 0 Topics
- 2048 Posts
Hi @2tara,
I’m glad to read that you’ve been able to solve this! 🙂
When I shared this snippet with you, I was under the impression that you wanted to swap the default theme avatar for your own default image. In case you still wish to reset the default gravatar, you could try this also:
/** * Resetting the default gravatars. */ if ( function_exists( ‘buddypress’ ) ) { if ( ! class_exists( ‘Youzer’ ) ) { define( 'BP_AVATAR_DEFAULT', 'https://www.gravatar.com/avatar/?d=mp&s=72' ); define( 'BP_AVATAR_DEFAULT_THUMB', 'https://www.gravatar.com/avatar/?d=mp&s=300' ); } }
To add this code snippet to your site, we recommend that you use a the Code Snippets plugin (https://wordpress.org/plugins/code-snippets/). If you have never activated this plugin, please read the following post:
Please also note that we don’t provide any theme customization. So, you shouldn’t expect other snippets from us unless it’s to fix an issue stemming from our own codebase. We always try our best to help theme users whenever we can and only provide code snippets out of courtesy to prevent them from waiting for the next update.
Cheers,
May 26, 2020 at 12:29 #13110 -
AuthorPosts
Hi there,
This topic has been inactive for a while now so we will be closing it to keep the forum tidy. Don't hesitate to create a new topic if you still need help and we'll be glad to help you!
Best regards,
The Themosaurus team.
The topic ‘I just want to avatar mystery man’ is closed to new replies.