Eso
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 |
---|---|---|---|---|---|
Featured image allowed upload sizes
Started by: Eso in: Toolset Professional Support |
2 | 8 | 6 years, 5 months ago | ||
Can i limit characters count for my single-line text field in CRED forms ?
Started by: Eso
in: Toolset Professional Support
Problem: Solution: For example: jQuery(document).ready(function ($) { $('name^=wpcf-FIELD-NAME]').attr('maxlength',20); }); Where: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
3 | 3 | 6 years, 5 months ago | ||
I am totally lost…
Started by: Eso in: Toolset Professional Support |
3 | 6 | 6 years, 5 months ago | ||
I need to understand the logic of Toolset… I am new to this&Its not easy 4 me.
Started by: Eso in: Toolset Professional Support |
3 | 5 | 6 years, 5 months ago | ||
Make field required in Forms
Started by: Eso
in: Toolset Professional Support
Problem: The issue here is that the user wanted to make his featured image field required. Solution: To do this you will need to use the Toolset Forms validation hook to make the field required. Add the following to your functions.php file add_filter('cred_form_validate','my_validation',10,2); function my_validation($error_fields, $form_data) { //field data are field values and errors list($fields,$errors)=$error_fields; //uncomment this if you want to print the field values //print_r($fields); //validate if specific form if ($form_data['id']==12) { //check if featured image exists if (empty($fields['_featured_image']['value'])) { //set error message for featured image $errors['_featured_image'] = 'Missing featured image'; } } //return result return array($fields,$errors); } Change the ID from 12 to the id of your form. |
2 | 3 | 6 years, 5 months ago | ||
Apache Server error
Started by: Eso
in: Toolset Professional Support
Problem: The issue here is here is that the user is getting this error. Solution: |
2 | 3 | 6 years, 5 months ago | ||
Multiline Fields Row size
Started by: Eso in: Toolset Professional Support |
1 | 2 | 6 years, 5 months ago | ||
Front-end display issues…
Started by: Eso in: Toolset Professional Support |
2 | 3 | 6 years, 5 months ago | ||
How can I show the radio buttons horizontally and full width
Started by: Eso in: Toolset Professional Support |
2 | 4 | 6 years, 5 months ago |