filipV-3
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
account
Started by: filipV-3 in: Toolset Professional Support |
3 | 13 | 6 years, 6 months ago | ||
Improve compatibility with Woocommerce fields
Started by: filipV-3 in: Toolset Professional Support |
2 | 6 | 6 years, 11 months ago | ||
Show the shortcodes array with PHP
Started by: filipV-3 in: Toolset Professional Support |
2 | 4 | 6 years, 11 months ago | ||
"value":"[wpv-post-id]" to show the label values
Started by: filipV-3 in: Toolset Professional Support |
2 | 9 | 6 years, 11 months ago | ||
the CRED form isn't saving input from css editor anymore
Started by: filipV-3 in: Toolset Professional Support |
2 | 5 | 7 years ago | ||
Allow drag & drop ordering of field groups
Started by: filipV-3 in: Toolset Professional Support |
2 | 3 | 7 years ago | ||
Simplify code for saving entry from cred into user field
Started by: filipV-3 in: Toolset Professional Support |
3 | 7 | 7 years ago | ||
Need to reload browser to see result after saving field
Started by: filipV-3 in: Toolset Professional Support |
3 | 4 | 7 years ago | ||
Time Stamp to normal date
Started by: filipV-3 in: Toolset Professional Support |
2 | 6 | 7 years ago | ||
Using CPT entries in CRED registration form – select field
1
2
Started by: filipV-3 in: Toolset Professional Support |
2 | 25 | 7 years ago | ||
Sending user email with custom fields data
Started by: filipV-3 in: Toolset Professional Support |
2 | 5 | 7 years, 1 month ago | ||
view result not outlining as expected
Started by: filipV-3 in: Toolset Professional Support |
2 | 9 | 7 years, 2 months ago | ||
Logical problem
Started by: filipV-3
in: Toolset Professional Support
Problem: Solution: 2. Please add this code in your theme’s or child theme’s functions.php file. Please note the comments in this code and replace your field-names (slugs), form ID, etc where needed, otherwise code will not work: add_filter('cred_form_validate','form_field_validation', 2, 10); function form_field_validation( $field_data, $form_data ) { // field data are field values and errors list($fields,$errors)=$field_data; // validate if specific CRED form ID if ( $form_data['id'] == 3650 ) { // set error message per field if ( $fields['wpcf-text-field']['value'] == '' ) // Field slug with wpcf "wpcf-text-field" $errors['text-field'] = 'Text Field must not be empty'; // Field slug without wpcf "text-field" if ( $fields['wpcf-text-field2']['value'] == '' ) $errors['text-field2'] = 'Text Field 2 must not be empty'; } return array( $fields, $errors ); } Related ticket: https://toolset.com/forums/topic/required-fields-not-working-in-cred/#post-304667 |
2 | 6 | 7 years, 2 months ago | ||
Split up long cred forms
Started by: filipV-3 in: Toolset Professional Support |
2 | 4 | 7 years, 2 months ago | ||
not saving checkboxes with href link
Started by: filipV-3
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 7 years, 2 months ago |