dorM
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Displaying Nested Repeaters
Gestartet von: dorM in: Toolset Professional Support |
2 | 9 | vor 5 Jahren, 1 Monat | ||
Exclude a Category from Taxonomy Views
Gestartet von: 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 | vor 5 Jahren, 5 Monaten | ||
Image repeater field not showing in View
Gestartet von: dorM in: Toolset Professional Support |
1 | 2 | vor 5 Jahren, 5 Monaten | ||
When filtering using Pot Reference field – it returns a number instead of text
Gestartet von: dorM in: Toolset Professional Support |
2 | 15 | vor 5 Jahren, 9 Monaten | ||
Split: When filtering using Pot Reference field – it returns a number instead of text
Gestartet von: dorM in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 9 Monaten | ||
Create a required checkbox with a label, which one of the words is a link
Gestartet von: 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 | vor 5 Jahren, 9 Monaten | ||
WP All Import dont import One to Many Relationships
Gestartet von: dorM in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 9 Monaten | ||
Cant Add a view – Error
Gestartet von: dorM in: Chat Support |
1 | 1 | vor 5 Jahren, 9 Monaten |