shawnW-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 |
---|---|---|---|---|---|
I need a way to intercept autocomplete="off" attribute for Google Maps Fields…
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 3 | hace 4 años, 9 meses | ||
Nesting Field Group View in Template in View – No Items Found
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 3 | hace 4 años, 9 meses | ||
Nested Conditional Cause Short Code to Fail
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 5 | hace 4 años, 10 meses | ||
WP could not create a database table for address cache – phpmyadmin
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 4 | hace 4 años, 11 meses | ||
Moved CPT+ to new site using module – content temp missing
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 7 | hace 5 años | ||
View (with Maps) Didn't Work After Import from Module
1
2
Iniciado por: shawnW-3 en: Toolset Professional Support |
4 | 21 | hace 5 años | ||
Advice on how to best submit with ajax…
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 12 | hace 5 años, 1 mes | ||
Using a View to Inform a Cred Field…
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 4 | hace 5 años, 2 meses | ||
Export Module causes "An error occurred please try again."
Iniciado por: shawnW-3 en: Toolset Professional Support |
2 | 7 | hace 5 años, 5 meses | ||
Get value from Select2 Post Relationship Selector to use in cred_save_data $_POST
Iniciado por: shawnW-3
en: Toolset Professional Support
Problem: How to go about it? Solution: $_POST["@post-page_parent"] Note that the HTML input name of the Select2 will have a dot as in @post-page.parent But the $_POST will listen to the key with an underscore instead of dot, as in @post-page_parent So you can get the proper name of the $_POST Select2 input with this process: |
2 | 4 | hace 5 años, 5 meses | ||
Drag and Drop File Upload….
Iniciado por: shawnW-3 en: Chat Support |
1 | 2 | hace 5 años, 5 meses | ||
Adding Class to Radio Cred_Field does nothing (works fine everywhere else)
Iniciado por: shawnW-3
en: Toolset Professional Support
Problem: Solution: Types and Generic fields: To suggest adding the class attribute to other fields such as radio please submit your voice for the feature at https://toolset.com/home/contact-us/suggest-a-new-feature-for-toolset/ mentioning you would like to see support for the class attribute on radios and checboxes in Form fields Relevant Documentation: |
2 | 5 | hace 5 años, 5 meses | ||
Can't reselect custom search filter – relationships filters not working…
Iniciado por: shawnW-3 en: Chat Support |
1 | 1 | hace 5 años, 6 meses | ||
Go to Specific Page based on Form Field Value
Iniciado por: shawnW-3
en: Toolset Professional Support
Problem: The issue here is that the user wanted to redirect their form submissions based on a custom field value. Solution: We can actually do this with our redirect hook in CRED. Add the following to your Toolset custom code and activate it. The toolset custom code section can be found in Toolset -> Settings -> Custom Code. add_filter('cred_success_redirect', 'custom_redirect',10,3); function custom_redirect($url, $post_id, $form_data) { if ($form_data['id']==12 && isset($_POST['wpcf-custom-field'])){ if($_POST['wpcf-custom-field'] == 'some value'){ return 'http://newlocation'; } } return $url; } The code above is the basic way to do a redirect based on the custom field value. What you need to do is to replace the 'wpcf-custom-field' with the slug of your custom field keeping the wpcf- prefix. |
2 | 7 | hace 5 años, 6 meses | ||
Filter a Relationship by author within a Form…
Iniciado por: shawnW-3
en: Toolset Professional Support
Problem: How do I filter a relationship in a front end form, by the post author? Solution: It is possible within Toolset form, for example, you can try these: Relevant Documentation: https://toolset.com/documentation/user-guides/cred-shortcodes/#cred_field |
2 | 5 | hace 5 años, 6 meses |