michelB
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 |
---|---|---|---|---|---|
Execution of shortcodes upon loading WYSIWYG
Started by: michelB in: Toolset Professional Support |
4 | 9 | 6 years, 6 months ago | ||
CRED top error message customization
Started by: michelB in: Toolset Professional Support |
2 | 9 | 7 years ago | ||
CRED Generic fields values vanishing after validation
Started by: michelB in: Toolset Professional Support |
2 | 9 | 7 years, 1 month ago | ||
How to use get_query_template( ‘404’ ) with Layout
Started by: michelB
in: Toolset Professional Support
Problem: I would like to apply a Layout to a 404 page I apply using status_header(). Solution: Use the following code syntax to force a specific Layout to be applied: the_ddlayout( '404-layout-slug-or-id', array('post-content-callback' => 'A-CALLBACK-FUNCTION-AS-FALLBACK-FOR-POST-CONTENT-IF-YOU-WANT', 'allow_overrides' => 'false') ); |
2 | 7 | 7 years, 1 month ago | ||
Displaying custom-conditional error messages near field labels in CRED forms
Started by: michelB
in: Toolset Professional Support
Problem: I would like to show custom validation errors inline in my CRED form, not just in the top summary of errors. Solution: I've added this to our list of feature requests for CRED, and I'll continue to update this ticket as I receive additional information about this usability request. |
2 | 5 | 7 years, 2 months ago | ||
Displaying CRED error messages near field labels
Started by: michelB
in: Toolset Professional Support
Problem: Solution: add_filter('cred_filter_field_before_add_to_form', 'required_fields_func', 10, 2); function required_fields_func($field, $computed_values){ $array_of_fields = ('wpcf-myfields', 'taxonomies'); if(in_array($computed_values["name"], $array_of_fields)){ $field['data']['validate']['required'] = array ( 'active' => 1, 'value' => 1, 'message' => 'This Field is required!!.' ) ; } ==> Make sure to replace your field name and taxonomy in this code. Old ticket with the similar issue and solution summary at top: |
3 | 8 | 7 years, 2 months ago | ||
CRED double opt-in for user registration
Started by: michelB
in: Toolset Professional Support
Problem: OR for a more premium way: |
2 | 4 | 7 years, 2 months ago |