Replies
- Brajesh Singh on October 13, 2024 at 8:05 pm in reply to: [Resolved] Buddyboss – hide admin user id from member directory and network search. #53296
Hi J,
Thank you for the understanding.At the moment, I am not seeing any such option for BuddyBoss or BuddyPress.
Regards
Brajesh - Brajesh Singh on October 13, 2024 at 8:04 pm in reply to: [Resolved] Mediapress not restricting upload storage quota, displayed quota is wrong #53295
Hi Sephanie,
Thank you for the reply.Can you please tell us which version of BuddyPress are you using?
Thank you
Brajesh - Brajesh Singh on October 9, 2024 at 9:28 pm in reply to: “Post Visiblity” in translation file is not Buddyblog Pro translation file #53289This reply has been marked as private.
- Brajesh Singh on October 9, 2024 at 5:15 pm in reply to: BuddyPress Ajax Registration plugin features #53288
Hi Carsten,
Thank you for the questions.1. It shows the fields from profile field group 1.
It can be customized via code to use different group. There is a filter
bpajaxr_xprofile_args
for that.Yes, It does have a password reset box which opens inside the modal.
Please note that when the user clicks the link to open the reset link, that will not be in the modal.
Regards
Brajesh - Brajesh Singh on October 9, 2024 at 1:23 pm in reply to: [Resolved] Limit invitations to avoid beeing spammed #53286
Hi,
Thank you for the reply.I am glad it worked.
BuddyPress does not provide the API for counting for an interval. It is certainly doable with direct queries. It will need significant time to develop(at least couple of hours to turn into a plugin with settings etc) .
Currently, I lack free time to do any further work on it though.
Regards
Brajesh - Brajesh Singh on October 9, 2024 at 1:20 pm in reply to: [Resolved] How to completely remove Buddydev plugins including deleting all files? #53285
You are welcome.
- Brajesh Singh on October 9, 2024 at 1:19 pm in reply to: “Post Visiblity” in translation file is not Buddyblog Pro translation file #53284This reply has been marked as private.
- Brajesh Singh on October 8, 2024 at 9:13 pm in reply to: [Resolved] Limit invitations to avoid beeing spammed #53278
Hi Alex,
Thank you for the question.I am afraid, I lack the time to look much into this.
Something like this may work for you.
add_filter( 'bp_user_can', function ( $retval, $user_id, $capability, $site_id, $args ) { if ( 'bp_members_send_invitation' !== $capability ) { return $retval; } $count = BP_Invitation::get_total_count( array( 'inviter_id' => $user_id ) ); $max_allowed = 20;// change it. if ( $count >= $max_allowed ) { $retval = false; } return $retval; }, 10, 5 );
I haven’t tested it, Please test it by setting lower limit and see if that works?
Regards
Brajesh - Brajesh Singh on October 8, 2024 at 8:51 pm in reply to: [Resolved] Buddyboss – hide admin user id from member directory and network search. #53276
Hi J,
Thank you for the reply.1. The code will work fine with members directory without any issue.
2. For the network search, I will suggest testing with each BuddyBoss major release.About the other issue related to activity, Please contact BuddyBoss. It is a very much BuddyBoss specific behaviour and I believe they should be able to assist you with it better than I can.
Regards
Brajesh Hi Lawerence,
Thank you for the reply.MediaPress does not offer mixed gallery out of the box.
You will need to hire a developer to allow mixed gallery. Changing label is easy. They can be translated.
Regards
Brajesh