dorM
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 |
---|---|---|---|---|---|
Displaying Nested Repeaters
Started by: dorM in: Toolset Professional Support |
2 | 9 | 5 years, 1 month ago | ||
Exclude a Category from Taxonomy Views
Started by: dorM
in: Toolset Professional Support
Problem: I have a taxonomy View and I would like to exclude one category. Solution: You can accomplish it with custom code and the wpv_filter_taxonomy_query API: //Exclude specific term from term View add_filter( 'wpv_filter_taxonomy_query', 'ts_modify_tax_query', 10, 3 ); function ts_modify_tax_query( $tax_query_settings, $view_settings, $view_id) { $views = array( 12345 ); if( in_array( $view_id, $views ) ) { $tax_query_settings['exclude'] = '67890'; } return $tax_query_settings; } Replace 12345 with a comma-separated list of View IDs where you would like to exclude a specific term. Then replace 67890 with a comma-separated list of term IDs you would like to exclude. Place this code in a child theme's functions.php file, or in a new custom code snippet in Toolset > Settings > Custom Code. Relevant Documentation: |
2 | 5 | 5 years, 5 months ago | ||
Image repeater field not showing in View
Started by: dorM in: Toolset Professional Support |
1 | 2 | 5 years, 5 months ago | ||
When filtering using Pot Reference field – it returns a number instead of text
Started by: dorM in: Toolset Professional Support |
2 | 15 | 5 years, 9 months ago | ||
Split: When filtering using Pot Reference field – it returns a number instead of text
Started by: dorM in: Toolset Professional Support |
2 | 2 | 5 years, 9 months ago | ||
Create a required checkbox with a label, which one of the words is a link
Started by: dorM
in: Toolset Professional Support
Problem: The issue here is that the user wanted to create a required terms of conditions checkbox with a link to the terms and conditions. Solution: You can do it by creating a generic field like the one below in your CRED form. [cred_generic_field type='checkbox' field='policy'] { "required":1, "default":"I agree to Terms and Policy", "label":"I agree to <a href='http://www.example.com'>Terms</a> and Policy" } [/cred_generic_field] |
2 | 3 | 5 years, 9 months ago | ||
WP All Import dont import One to Many Relationships
Started by: dorM in: Toolset Professional Support |
2 | 2 | 5 years, 9 months ago |