Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Xprofile Tag field #41091

    Thank you Christopher.

    Please do let me know their feedback if they have some suggestions to change something in the plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi,
    Thank you for the question.

    Here is the action fired on private group membership request.

    
    do_action( 'groups_membership_requested', $user_id, $admins, $group_id, $request_id );
    

    You can hook to the action ‘groups_membership_requested’ and check for the 3rd parameter, which is the group id.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Buddypress group is not member redirect #41089

    Hi Simon,
    Thank you for the question.

    Please use the following code.

    
    
    /**
     * Redirects user to custom url if they visit the group and are not member of the group.
     * Site admins are not restricted.
     */
    add_action( 'bp_template_redirect', function () {
    	if ( ! is_super_admin() && bp_is_group() && ! groups_is_user_member( get_current_user_id(), groups_get_current_group()->id ) ) {
    		// change the url to any page.
    		$redirect_url = site_url( '/about' );
    		bp_core_redirect( $redirect_url );
    	}
    } );
    

    You can change the redirect url as you please.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Separate Storage Limits for Media #41083

    Hi Lisa,
    Thank you for the question.

    Currently, I am not seeing any way to do it. The problem is we do not store file size. we calculate the used storage based on directory sizes for the context(specific user, group etc).

    So, it can be modified by the user type etc but not by the media type currently.

    I do understand the need for limiting storage by type and will be planning it for future.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Edit BuddyPress Profile Menu #41081

    Hi Gabriela ,
    Thank you.
    That’s good to know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Thank you Tosin.

    We will be able to work on it in next couple of days. I or one of my team members will update you in next 5 working days on the implementation status.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Xprofile Tag field #41079

    Hi Christopher,

    Thank you for reporting the issue.

    since the issue only happens with BuddyBoss theme, Please report it to the BuddyBoss team. They are in a better position to assist you with it.

    I am assuming that it could be some css issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: New SAAS cloud service provider #41076

    Thank you for sharing Tosin.
    I hope it will be useful for people looking for alternatives.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Users Choosing Member Types #41074

    Hi Lisa,

    This plugin(member types pro), adds its own system of adding tabs.

    Are you using some theme which adds their own tabs? If yes, Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Alison,

    we will be releasing an update this week.

    also, you are probably partially right. We did fix string translations in previous releases
    https://github.com/buddydev/bp-activity-plus-reloaded/commits/made-string-translatable

    But that did not cover all strings.

    Regards
    Brajesh