Replies
Hi Vivek,
I or Ravi will put some code to assist you with it in next 24-48 hours.Thank you
Brajesh- Brajesh Singh on April 24, 2019 at 10:55 am in reply to: Share from within site to Buddypress #22552
Hi Vivek,
I am sorry, I forgot about this. I will do it this weekend.Thank you
Brajesh - Brajesh Singh on April 24, 2019 at 5:02 am in reply to: Possible bug exposed via BP Member Types Pro & BP Registrations Options plugin #22545
Hi Sam,
Thank you for sharing details.1. Please disable condition profile field plugin, The current member types pro conditions and conditional profile field don’t work well together. You can use only one of these 2 conditions for now. I am planning to re-add the support for conditional profile field plugin in future(It broke for registration when we added member type based registration conditions).
2. I will be testing the “BuddyPress registration Options” plugin with the code snippet and will get back to you in couple of hours.
Thank you
Brajesh - Brajesh Singh on April 23, 2019 at 5:45 am in reply to: Possible bug exposed via BP Member Types Pro & BP Registrations Options plugin #22520
Hi Sam,
My apologies for the inconvenience.Is the BuddyPress registration option plugin active?
Regards
Brajesh - Brajesh Singh on April 22, 2019 at 6:19 pm in reply to: Looking for Image rendering in MP Gallery same as for Profile-Media #22518This reply has been marked as private.
- Brajesh Singh on April 22, 2019 at 6:13 pm in reply to: [Resolved] Small feature update – BuddyPress Username Changer #22517
Hi Michaël,
Please ask Aurel to look at this filterbp_username_changer_user_can_updateHe can use it to allow people update settings.
Regards
Brajesh - Brajesh Singh on April 22, 2019 at 6:04 pm in reply to: Question – Plugin Moderation, where it's set this #22515
Hi Michaël,
Here is an example.
/** * Custom validation for BuddyPress moderation tools. * * @param string $err error message if any. * @param string $field field name. * @param mixed $value field value. * * @return string */ function buddydev_custom_moderation_validation( $err, $field, $value ) { // $field could be 'subject', 'message', 'category', 'name', 'email' switch ( $field ) { case 'message': // validate and if error, set to $err. if ( strlen( $value ) > 500 ) { $err = "Only 500 charaters allowed."; } break; case 'subject': // if subject is longer than 50 character. if ( strlen( $value ) > 50 ) { $err = "Subject is too long. Only 50 letters allowed."; } break; } return $err; } add_filter( 'bpmts_form_field_validation_message', 'buddydev_custom_moderation_validation', 10, 3 );Please change the values as you please.
Regards
Brajesh - Brajesh Singh on April 22, 2019 at 5:57 pm in reply to: [Resolved] Feature update or snippet – Recent Visitors For BuddyPress Profile #22514This reply has been marked as private.
- Brajesh Singh on April 22, 2019 at 5:46 pm in reply to: Looking for Image rendering in MP Gallery same as for Profile-Media #22513This reply has been marked as private.
- Brajesh Singh on April 22, 2019 at 5:38 pm in reply to: Possible bug exposed via BP Member Types Pro & BP Registrations Options plugin #22511
Hi Sam,
Hope you are doing well.I have released BuddyPress Member Types Pro 1.3.3 now.
It supports conditions on required field too. Please give it a shot.Regards
Brajesh