Replies
Thank you Christopher.
Please do let me know their feedback if they have some suggestions to change something in the plugin.
Regards
Brajesh- Brajesh Singh on October 21, 2021 at 12:14 am in reply to: trigger: User requests to join a private group action: recieve email #41090
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 - Brajesh Singh on October 21, 2021 at 12:06 am 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 - Brajesh Singh on October 20, 2021 at 12:58 pm 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 - Brajesh Singh on October 20, 2021 at 9:55 am in reply to: [Resolved] Edit BuddyPress Profile Menu #41081
Hi Gabriela ,
Thank you.
That’s good to know.Regards
Brajesh - Brajesh Singh on October 20, 2021 at 9:30 am in reply to: [Resolved] Buddypress Featured Member Feature Suggestion #41080
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 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
BrajeshThank you for sharing Tosin.
I hope it will be useful for people looking for alternatives.Regards
Brajesh- Brajesh Singh on October 19, 2021 at 7:51 pm 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 - Brajesh Singh on October 19, 2021 at 7:26 pm in reply to: [Resolved] Translation for Buddypress activity plus doesnt work #41072
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-translatableBut that did not cover all strings.
Regards
Brajesh