Replies
- calu on January 19, 2020 at 10:28 pm in reply to: [Resolved] Using different default Avatar for BuddyPress code #27410
Hi Brajesh, thanks for the clarification, it’s working now!
Regards
Carsten - calu on January 19, 2020 at 10:27 pm in reply to: [Resolved] Email situation options are missing for certain emails #27409
Hi Brajesh, thank for the information, and the future update
Regards
Carsten - calu on January 17, 2020 at 10:43 pm in reply to: [Resolved] Avatars are not changing format after resizing #27384
Hi Brajesh, you were absolutely right, it was a long forgotten CSS selector which was enforcing the issue.
I should have checked this out first, sorry about that.
Regards
Carsten Hi Brajesh, thanks for your feedback, I found a compromise, by setting the size for the full avatar to 355px., according to the crop frame by using the inspector. In fact, there are no reason for a bigger avatar, since I only have full frame avatar on the phone.
Thanks again
Regards
Carsten- calu on January 16, 2020 at 10:57 pm in reply to: [Resolved] Finding BP mail notification language files #27364
Oh yes, I found it, thanks!
- calu on January 16, 2020 at 10:52 pm in reply to: [Resolved] Finding BP mail notification language files #27362
Hi Brajesh, thank you very much for sharing this, I have been looking every where in translation files for this.
But apparently its only possible to edit colors and text sizes here, not content?
Regards
Carsten - calu on January 15, 2020 at 9:15 am in reply to: [Resolved] Finding BP mail notification language files #27349
Hi Ravi, thank you for your research. Your search for ‘You have unread messages’ string in BuddyPress, is in general, not my site alone right?
Here are some screen shots of the mail notifications sent, which looks like they are sent by BuddyPress.
Regards
Carsten Hi Brajesh, yes I discovered the consequences of not using the code.
Uploading a profile image from the phone, is an important feature on a social network page. Is there any solution to the crop image issue on phone, when full avatar size is larger than 200-300px ?
Regards
Carsten- calu on January 14, 2020 at 6:28 am in reply to: [Resolved] Finding BP mail notification language files #27325
Hi Ravi, thanks , from what I can read from your answer, these text strings are hard coded, and there are no .po translation files for them?
Regards
Carsten Hi, I’m seeking the right solution for showing thump and full size avatars, and the question is: do I need the code below. If I remove it, and add a Media query like this, what will happen then?
Will BuddyPress then only recognize the thumb size and enlarge this to full size with bad resolution as a result?
@media (max-width: 700px) { #buddypress div#item-header img.avatar {
width: 100%;
}
}The code in question:
if ( ! defined( 'BP_AVATAR_THUMB_WIDTH' ) ) define( 'BP_AVATAR_THUMB_WIDTH', 120 ); //change this with your desired thumb width if ( ! defined( 'BP_AVATAR_THUMB_HEIGHT' ) ) define( 'BP_AVATAR_THUMB_HEIGHT', 120); //change this with your desired thumb height if ( ! defined( 'BP_AVATAR_FULL_WIDTH' ) ) define( 'BP_AVATAR_FULL_WIDTH', 700); //change this with your desired full size,weel I changed it to 225,300 :) if ( ! defined( 'BP_AVATAR_FULL_HEIGHT' ) ) define( 'BP_AVATAR_FULL_HEIGHT', 700); //change this to default height for full avatar
Regards
Carsten