BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Tags restricted to groups #49288

    Hello Jose,

    Thank you for the acknowledgement. As per my understanding by group tags are you referring to the Group Types? Please refer to the following screenshot:
    https://tinyurl.com/29eo8l42

    If yes, You can manage them from All Groups or edit the group screen or share some screenshots so that I can help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: How to Update all Existing Profiles’ Visibility #49286

    Hello

    Welcome to the BuddyDev Forums. Yes, it can be doable with some lines of code and we will provide you. Please wait till Monday we will get back to you.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Tags restricted to groups #49285

    Hello Jose,

    Welcome to the BuddyDev Forum. But, Sorry I am not able to understand your requirement fully. Please help me with this so that I can help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Content Not Showing #49284

    Hello,

    Thank you for the acknowledgement. Yes, I will share a video of the issue soon. So that You can fix this on your main site.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Tweak and disable buddypress notifications #49276

    Hello Tosin,

    Thank you for posting here. The BuddyPress plugin handles internal and email notifications separately. So, You can deactivate the notification module.

    For e.q.

    
    // Record internal notifications
    add_action( 'friends_friendship_requested', 'bp_friends_friendship_requested_notification', 10, 3 );
    // Sends email notifications
    add_action( 'friends_friendship_requested', 'friends_notification_new_request', 10, 3 );
    

    Please check and let me know what type of notifications you are dealing with.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Content Not Showing #49275
    This reply has been marked as private.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Avatar tweak #49267

    Hello,

    Thank you for posting. Please try the following code in your “bp-custom.php” file.

    
    // modify BuddyPress avatar class with member type
    add_filter( 'bp_core_avatar_class', function ( $classes, $item_id, $object ) {
    
    	if ( 'user' !== $object ) {
    		return $classes;
    	}
    
    	$member_type = bp_get_member_type( $item_id );
    
    	if ( $member_type ) {
    		$classes .= ' member-type-' . $member_type;
    	}
    
    	return $classes;
    }, 10, 3 );
    
    

    It will add a member-type specific class with an avatar then you can apply CSS rules to it.

    Note: Please refer to the following URL for more info on the bp-custom file
    https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Buddypress Profile Data Control #49264

    Hello Alexander,

    I’m sorry to hear that you have submitted requests through our plugin customization form multiple times and have not received any acknowledgement. Soon, we will contact you about your customization request.

    Regards
    Ravi

    • This reply was modified 1 year, 9 months ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Iain,

    Sorry for the inconvenience. Can you please share the screenshots of your tab configuration so I can check?

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Change Buddypress headers on register page #49218

    Hello Lain,

    Thank you for sharing your feedback. it’s good to know that you have a good learning exp.

    Regards
    Ravi