pedroS-6
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 |
---|---|---|---|---|---|
How to display a multi-valued fields into a select box field view
Started by: pedroS-6 in: Toolset Professional Support |
2 | 2 | 4 years ago | ||
Cred form doesn't work
Started by: pedroS-6 in: Toolset Professional Support |
2 | 4 | 4 years, 1 month ago | ||
Unable to add custom fields
Started by: pedroS-6 in: Toolset Professional Support |
2 | 4 | 4 years, 2 months ago | ||
The search engine does not work as I would like
Started by: pedroS-6 in: Toolset Professional Support |
2 | 6 | 4 years, 2 months ago | ||
How to show an error if the passwords do not match?
Started by: pedroS-6 in: Toolset Professional Support |
2 | 6 | 5 years, 2 months ago | ||
How to show an error if the passwords do not match?
1
2
Started by: pedroS-6
in: Toolset Professional Support
Problem: I have a Form that captures two passwords. I would like to display an error message if the two passwords do not match. Solution: Use the Forms API cred_form_validate to compare the two field values. add_filter( 'cred_form_validate', 'require_featured_image_validation', 10, 2 ); function require_featured_image_validation( $data, $form_data ) { $forms = array(36925); if( in_array( $form_data['id'], $forms ) ){ list($fields,$errors)=$data; if ($fields['wpcf-contrasena-denuncia']['value']!=$fields['wpcf-repita-la-denuncia']['value']) { //set error message for pass2 $errors['repita-la-denuncia']='Passwords do not match'; } $data =array($fields,$errors); } return $data; } Relevant Documentation: |
2 | 17 | 5 years, 2 months ago | ||
I can't upgrade toolset plugin
Started by: pedroS-6 in: Toolset Professional Support |
2 | 2 | 5 years, 3 months ago | ||
Partial load of a relationship between types
1
2
Started by: pedroS-6 in: Toolset Professional Support |
3 | 20 | 6 years, 1 month ago | ||
Search for any word
Started by: pedroS-6
in: Toolset Professional Support
Problem: The issue here is that the user wanted to do a full search of all the custom fields on the views frontend searches. Solution: In order to do this you will need to follow the instructions in the link below. |
2 | 3 | 6 years, 2 months ago | ||
Permission denied
Started by: pedroS-6 in: Toolset Professional Support |
2 | 6 | 6 years, 3 months ago | ||
I can not print posts
Started by: pedroS-6
in: Toolset Professional Support
Problem: The issue here is that the user wanted to print his frontend pages. Solution: Unfortunately toolset doesn't have a functionality that would allow users to print their frontend pages. However what you can do is to install a plugin that would allow you to do this. One such plugin is |
2 | 7 | 6 years, 4 months ago | ||
Create child post using current post as parent
Started by: pedroS-6
in: Toolset Professional Support
Problem: I would like to show a Form that allows Users to create a child post, using the current post as the parent. Solution: In a Form that creates the child posts, you should have a parent select field. If not, add the field or regenerate the form contents. If you do not want to display the field to your Users, use CSS to hide the field. Then set the value of the field using the current post's ID. <div style="display:none;"> [cred_field field='@book-chapter.parent' select_text='--- not set ---' class='form-control' output='bootstrap' value="[wpv-post-id id='$current_page']"] </div> Relevant Documentation: |
2 | 4 | 6 years, 6 months ago | ||
Where can I find the files ini, po and mo, to be able to translate?
Started by: pedroS-6 in: Toolset Professional Support |
2 | 8 | 6 years, 6 months ago | ||
It works not user repetition, but I can not upload images
1
2
Started by: pedroS-6 in: Toolset Professional Support |
3 | 18 | 6 years, 6 months ago | ||
can not update Cred
Started by: pedroS-6 in: Toolset Professional Support |
2 | 5 | 6 years, 7 months ago |