Forget Password Form
Started by: matthewS-5
in: Toolset Professional Support
2
3
6 years, 7 months ago
matthewS-5
Error uploading image to CRED form
Started by: natashaB
in: Toolset Professional Support
Quick solution available
Problem:
Validate fields value in CRED user form.
I'm using a function to validate the form data :
add_filter('cred_form_validate_605', 'validate_form_with_id_605');
function validate_form_with_id_605( $data ) {
list($fields,$errors)=$data;
if (empty($fields['first_name']['value'])) {$errors['first_name'] = 'Missing';}
if (empty($fields['last_name']['value'])) {$errors['last_name'] = 'Missing';}
return array($fields,$errors);
}
Solution:
You can try to modify the PHP codes as below and test again:
add_filter('cred_form_validate_605', 'validate_form_with_id_605');
function validate_form_with_id_605( $data ) {
if(!isset($_POST['form_submit_1'])){
list($fields,$errors)=$data;
if (empty($fields['first_name']['value'])) {$errors['first_name'] = 'Missing';}
if (empty($fields['last_name']['value'])) {$errors['last_name'] = 'Missing';}
}
return array($fields,$errors);
}
Relevant Documentation:
2
5
6 years, 7 months ago
natashaB
Subscription renewal – 6 days notice too short; renew before expire.
Started by: jamesH-10
in: Toolset Professional Support
2
2
6 years, 7 months ago
Juan
Continued – Save avg of child cpf to parent radio cpf to allow searching
Started by: Geoffrey Cleverley
in: Toolset Professional Support
3
16
6 years, 7 months ago
Geoffrey Cleverley
Submit button is disabled
Started by: Timothy
in: Toolset Professional Support
2
6
6 years, 7 months ago
Timothy
Classifieds Payment Setup
Started by: Brent Urbanski
in: Toolset Professional Support
2
4
6 years, 7 months ago
Shane
How can I show hide child posts with a membership button tied to a userprofile?
Started by: thomasH-7
in: Toolset Professional Support
2
2
6 years, 7 months ago
Luo Yang
User Registration with Woocommerce and Preventing Access to CRED Forms
Started by: chaseI
in: Toolset Professional Support
3
12
6 years, 7 months ago
chaseI
Adding Javascript to CRED Post Form
Started by: Nicholas
in: Toolset Professional Support
2
3
6 years, 7 months ago
Nicholas
Searching Book Review Child CPT and Book Parent CPT by Star Ratings
Started by: Geoffrey Cleverley
in: Toolset Professional Support
Quick solution available
3
13
6 years, 7 months ago
Geoffrey Cleverley
Part 2 of Populate CRED form with 2 parents – Thought resolved but isn't.
Started by: Geoffrey Cleverley
in: Toolset Professional Support
Quick solution available
2
4
6 years, 7 months ago
Geoffrey Cleverley
Populate CRED form with 2 parents
Started by: Geoffrey Cleverley
in: Toolset Professional Support
Quick solution available
Problem:
How to display CRED form with parent post of current logged in user and add two parents
Solution:
To display CRED parent field which displays only current logged in user posts, you need to following the steps given in the following reply:
You can find the proposed solution with the following reply:
https://toolset.com/forums/topic/populate-cred-form-with-2-parents/#post-404588
Relevant Documentation:
2
27
6 years, 8 months ago
Geoffrey Cleverley
cannot edit image field in cred form edit view
Started by: Rita
in: Toolset Professional Support
2
3
6 years, 8 months ago
Rita
Date Selector Bug
Started by: Geoffrey Cleverley
in: Toolset Professional Support
2
8
6 years, 8 months ago
Geoffrey Cleverley
Still need help with saving date field (cont. from closed thread)
Started by: umbercode
in: Toolset Professional Support
2
5
6 years, 8 months ago
umbercode