Replies
- This reply has been marked as private.
Hi Max,
I am sorry, this plugin is not suitable for that purpose.BuddyPress User Testimonials does allow writing about the profile owner but the other functionality is not there.
Regards
BrajeshHi Luigi,
Welcome to BuddyDev.Please define simple users. Is it users with ‘subscriber’ role?
Thank you
BrajeshHi Mike,
Thank you.
No problem. I will be glad to assist 🙂Have a great night to you too.
Regards
BrajeshThank you Mike.
If you need me to debug it, I will do that gladly(I will need FTP access though).Please let me know if they are able to assist you or not .
Regards
Brajesh- Brajesh Singh on February 22, 2019 at 12:13 am in reply to: [Resolved] I want the registration to complete after clicking the registration email link #21082
You are welcome 🙂
Hi Ben,
I am sorry to hear about that. I sure hope that it is better than earlier.Looking forward to chat with you.
My best wishes.
Regards
Brajesh- This reply has been marked as private.
- This reply has been marked as private.
- Brajesh Singh on February 21, 2019 at 4:33 pm in reply to: [Resolved] xprofile verify if custom field data exist on registration #21073
Hi,
Welcome to BuddyDev and thank you for asking the question.You can do it on bp_signup_validate action. I am showing it with a example. You will need to check for duplicate on your own as I am not sure how are you storing or from which table you want to check for the data(Is it the profile data table?)
You will also need to know the field id to find the submitted content
/** * Validation error. */ function budydev_custom_validate_signup() { $field_id = 32;// please change with your field id. $field = isset( $_POST[ 'field_' . $field_id ] ) ? trim( $_POST[ 'field_' . $field_id ] ) : ''; // validate your field // from database // and if there is any error, // add the error to BuddyPress as buddypress()->signup->errors[ 'field_' . $field_id ] = "Your error message"; } add_action( 'bp_signup_validate', 'budydev_custom_validate_signup' );Regards
Brajesh