Replies
Thank you Christopher.
I hope it will help others. I am not sure of the reason as I haven’t checked it with BuddyBoss theme.
Anyway, It’s good to know that it is resolved.
Regards
Brajesh- Brajesh Singh on October 21, 2021 at 12:26 am in reply to: BuddyPress Group Activities Notifier – Failed to send notification with Emoji #41092
Hi Pablo,
Thank you.
It seems like some utf encoding problem with the sql I am using for bulk insertion. Can you please check your php error log and see if there is any message for database error?
Please post me the message.
Regards
Brajesh 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