Replies
- Alex on October 14, 2024 at 10:49 am in reply to: How to make changes at the values from the invitations loop before output #53300
By the way. I tried to edit my post because I forgot the code blocks but it says you cannot create new topics??
add_filter(‘bp_get_the_members_invitation_property_’,function ($property,$value) { if ($property == ‘date_modified’){ $value= date(‘d.m.Y’,strtotime($value)); } return $value; },10,2);
- Alex on October 10, 2024 at 12:31 pm in reply to: [Resolved] Limit invitations to avoid beeing spammed #53290
I tried to overwrite the message with this filter below but inside the your surrounding filter it is not working. I suppose because the $message variable is unknown by the surrounding filter. But how can I solve this?
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 = 2;// change it.
if ( $count >= $max_allowed ) {
$retval = false;// overwrite message
add_filter(‘members_invitations_form_access_restricted’,’overwrite_message’);
function overwrite_message ($message) {
$message = ( ‘You have reached the limit of invitations.’);
return $message;
}}
return $retval;
}, 10, 5 );
- Alex on October 9, 2024 at 3:07 pm in reply to: [Resolved] Limit invitations to avoid beeing spammed #53287
So is there any possibility to change the error message at least?
- Alex on October 9, 2024 at 11:33 am in reply to: [Resolved] Limit invitations to avoid beeing spammed #53283This reply has been marked as private.
- Alex on October 9, 2024 at 11:22 am in reply to: [Resolved] Limit invitations to avoid beeing spammed #53282
Hi Brajesh,
it works. Great! Thank you.Just two more questions on this.
1. At the backend on the invitations table you can see that the date is saved under “date modified”. Is it possible to get this date and then add it to your function? To check if the count is more than the max_allowed FOR THE SAME DAY, then set $retval to false?
2. After the limit is reached the message pops up saying “you dont have the rights to send invitations”.
Am I able to manipulate this message saying something like “you have reached the daily limit on invitations! Try again later”?Regards
AlexPS: I really wonder why nobody has this implemented over the last years. Looks like buddypress core development slows down, which is not good.
- Alex on October 7, 2024 at 10:09 pm in reply to: [Resolved] PHP warning when activating plugin BuddyPress Profile Data Control #53266
Glad that you were able to fix it! Maybe I need it in the future again. 🙂
- Alex on October 7, 2024 at 9:07 pm in reply to: [Resolved] Limit invitations to avoid beeing spammed #53265
Or alternatively add Recaptche to the form…?
- Alex on September 25, 2024 at 10:13 pm in reply to: [Resolved] PHP warning when activating plugin BuddyPress Profile Data Control #53199
By the way I was using BP nouveau template pack. Because you were asking.
- This reply was modified 1 month, 3 weeks ago by Alex.
- Alex on September 25, 2024 at 9:57 pm in reply to: [Resolved] PHP warning when activating plugin BuddyPress Profile Data Control #53198
Hello Brajesh,
I made another test to reproduce the error. On localhost I didn’t have this error yet.
Its the same procedure what I wrote above.
Plugins activated: Your data control plugin (current version), bp classic and buddypress (both current version).
Themes tested with: Astra and twenty twenty four.The name field is the only field on xfields section which you cannot delete. Make the changes at your plugin which I made the screenshot from (switch “who can edit” from Adminstrator to Subscriber).
Then you get the warning. This time with debug on I got a more detailled warning. I also attach these image here. Hope this helps.This is all what I can do to help to fix that issue.
Meanwhile I programmed my own plugin for my needs with the advantage that I know whats going on.
So I don’t need this plugin anymore. If you want you can mark this thread as solved.
Error message
https://postimg.cc/JDVF3Q8D - Alex on September 25, 2024 at 10:00 am in reply to: [Resolved] PHP warning when activating plugin BuddyPress Profile Data Control #53195
Hello Brajesh,
could you give a short report that you are able to reproduce the warning and are working on a fix?
Otherwise I need to look after other solutions like this one f.e.
https://buddypress.org/support/topic/dont-allow-users-to-change-some-fields-after-sign-up-hide-those-fields/
because I dont want, that subscripers can edit their username after registration.Thanks for giving a short update on this!