filipV-3
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
account
Iniciado por: filipV-3 en: Toolset Professional Support |
3 | 13 | hace 6 años, 6 meses | ||
Improve compatibility with Woocommerce fields
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 6 | hace 6 años, 11 meses | ||
Show the shortcodes array with PHP
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 4 | hace 7 años | ||
"value":"[wpv-post-id]" to show the label values
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 9 | hace 7 años | ||
the CRED form isn't saving input from css editor anymore
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 5 | hace 7 años | ||
Allow drag & drop ordering of field groups
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 3 | hace 7 años | ||
Simplify code for saving entry from cred into user field
Iniciado por: filipV-3 en: Toolset Professional Support |
3 | 7 | hace 7 años | ||
Need to reload browser to see result after saving field
Iniciado por: filipV-3 en: Toolset Professional Support |
3 | 4 | hace 7 años | ||
Time Stamp to normal date
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 6 | hace 7 años | ||
Using CPT entries in CRED registration form – select field
1
2
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 25 | hace 7 años | ||
Sending user email with custom fields data
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 5 | hace 7 años, 2 meses | ||
view result not outlining as expected
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 9 | hace 7 años, 2 meses | ||
Logical problem
Iniciado por: filipV-3
en: 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 | hace 7 años, 3 meses | ||
Split up long cred forms
Iniciado por: filipV-3 en: Toolset Professional Support |
2 | 4 | hace 7 años, 3 meses | ||
not saving checkboxes with href link
Iniciado por: filipV-3
en: Toolset Professional Support
Problem: Solution: |
2 | 4 | hace 7 años, 3 meses |