Replies
Viewing 10 posts - 11,041 through 11,050 (of 19,326 total)
- 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 - Brajesh Singh on April 22, 2019 at 4:12 pm in reply to: Looking for Image rendering in MP Gallery same as for Profile-Media #22507This reply has been marked as private.
- Brajesh Singh on April 22, 2019 at 4:04 pm in reply to: Looking for Image rendering in MP Gallery same as for Profile-Media #22505This reply has been marked as private.
Thank you for the patience. It will work 🙂
- Brajesh Singh on April 22, 2019 at 4:01 pm in reply to: [Resolved] The CSS for how (BuddyDev) BP Deactivate Account page is shown on Buddypress. #22502
Hi Kristian,
Thank you for the kind words.Michaël is a nice and jolly person, he did not see the update and that’s what caused the confusion. He even wanted to write again after seeing your reply on the topic but it was closed by that time.
All is well 🙂Thank you for being a kind and generous.
Regards
Brajesh