BuddyDev

Search

Replies

  • Participant
    Level: Yogi
    Posts: 1112

    Hi Brajesh, thanks for the clarification, it’s working now!

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112

    Hi Brajesh, thank for the information, and the future update

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112
    calu on 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

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Avatar full width on mobile only #27381

    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

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Finding BP mail notification language files #27364

    Oh yes, I found it, thanks!

  • Participant
    Level: Yogi
    Posts: 1112
    calu on 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

  • Participant
    Level: Yogi
    Posts: 1112
    calu on 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.

    https://imgur.com/iS4Dkoc

    https://imgur.com/OWV5pBv

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Avatar full width on mobile only #27332

    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

  • Participant
    Level: Yogi
    Posts: 1112
    calu on 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

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Avatar full width on mobile only #27321

    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