shawnW-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 |
---|---|---|---|---|---|
I need a way to intercept autocomplete="off" attribute for Google Maps Fields…
Started by: shawnW-3 in: Toolset Professional Support |
2 | 3 | 4 years, 9 months ago | ||
Nesting Field Group View in Template in View – No Items Found
Started by: shawnW-3 in: Toolset Professional Support |
2 | 3 | 4 years, 9 months ago | ||
Nested Conditional Cause Short Code to Fail
Started by: shawnW-3 in: Toolset Professional Support |
2 | 5 | 4 years, 10 months ago | ||
WP could not create a database table for address cache – phpmyadmin
Started by: shawnW-3 in: Toolset Professional Support |
2 | 4 | 4 years, 11 months ago | ||
Moved CPT+ to new site using module – content temp missing
Started by: shawnW-3 in: Toolset Professional Support |
2 | 7 | 5 years ago | ||
View (with Maps) Didn't Work After Import from Module
1
2
Started by: shawnW-3 in: Toolset Professional Support |
4 | 21 | 5 years ago | ||
Advice on how to best submit with ajax…
Started by: shawnW-3 in: Toolset Professional Support |
2 | 12 | 5 years, 1 month ago | ||
Using a View to Inform a Cred Field…
Started by: shawnW-3 in: Toolset Professional Support |
2 | 4 | 5 years, 2 months ago | ||
Export Module causes "An error occurred please try again."
Started by: shawnW-3 in: Toolset Professional Support |
2 | 7 | 5 years, 5 months ago | ||
Get value from Select2 Post Relationship Selector to use in cred_save_data $_POST
Started by: shawnW-3
in: 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 | 5 years, 5 months ago | ||
Adding Class to Radio Cred_Field does nothing (works fine everywhere else)
Started by: shawnW-3
in: 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 | 5 years, 5 months ago | ||
Go to Specific Page based on Form Field Value
Started by: shawnW-3
in: 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 | 5 years, 6 months ago | ||
Filter a Relationship by author within a Form…
Started by: shawnW-3
in: 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 | 5 years, 6 months ago | ||
Woocommerce Fields in User Form
Started by: shawnW-3
in: Toolset Professional Support
Problem: The issue here is that the user wanted to populate the Woocommerce user profile fields using our Toolset Forms plugin. Solution: This will only work for simple text fields that Woocommerce provide, So Checkbox fields wont work. So what you need to do is to edit your form in expert mode and add the generic field. <div class="form-group"> <label>Shipping Phone Number</label> [cred_generic_field type='textfield' field='shipping_phone'] { "required":0, "persist": 1, "default":"" } [/cred_generic_field] </div> The example above is for the Phone field that woocommerce provides. |
2 | 7 | 5 years, 6 months ago | ||
Condtional Labels Outside Loop For CPTs in Loop
Started by: shawnW-3 in: Toolset Professional Support |
2 | 2 | 5 years, 8 months ago |