Dido
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 |
---|---|---|---|---|---|
How to customize custom date datepicker field with Toolset CRED form.
Started by: Dido
in: Toolset Professional Support
Problem: The start date must be a date in the future and the end date must be greater then the start date. Is there a way to make sure people don't make. Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
3 | 11 | 6 years, 4 months ago | ||
Country code shows up in stead of country name
Started by: Dido
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | 6 years, 4 months ago | ||
seperator shows up with empty selected value
Started by: Dido
in: Toolset Professional Support
Problem: Solution: *** Please make a FULL BACKUP of your database and website.*** Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
Template WooCommerce prodcut
1
2
Started by: Dido
in: Toolset Professional Support
Problem: It should be a compatibility problem of Catchbox theme and Views content template, I use a content template for WooCommerce products, it is not working anymore. Solution: You setup a theme file to render the content template directly Relevant Documentation: |
3 | 17 | 6 years, 8 months ago | ||
Diashow is not visible in custom field
Started by: Dido in: Toolset Professional Support |
2 | 7 | 6 years, 8 months ago | ||
View of Woocommerce orders
Started by: Dido
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 6 years, 8 months ago | ||
Warning: Missing argument 2 for WC_Template_Loader::unsupported_theme_title_filter()
Started by: Dido
in: Toolset Professional Support
Problem: Warning: Missing argument 2 for WC_Template_Loader::unsupported_theme_title_filter() in .../wp-content/plugins/woocommerce/includes/class-wc-template-loader.php on line 380 This is only on pages which contain Views from Toolset. Solution: |
2 | 5 | 6 years, 8 months ago | ||
Filtering posts on a map and in a separate list
Started by: Dido in: Toolset Professional Support |
2 | 3 | 6 years, 9 months ago | ||
How to remove Country from address field in Maps
Started by: Dido in: Toolset Professional Support |
2 | 3 | 6 years, 9 months ago | ||
Distance filter is nog working on Google Map
Started by: Dido in: Toolset Professional Support |
2 | 5 | 6 years, 9 months ago | ||
Display Fields with PHP
Started by: Dido
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
3 | 6 | 6 years, 10 months ago | ||
Frontend map does not work
Started by: Dido in: Toolset Professional Support |
2 | 3 | 6 years, 11 months ago | ||
how can I display images with a certain tag in a view?
Started by: Dido in: Toolset Professional Support |
2 | 2 | 6 years, 11 months ago | ||
View with no taxonomy Filter applied should show no results
Started by: Dido
in: Toolset Professional Support
Problem: When the User visits my search form and no taxonomy filter is applied, I would like the View to return "no results". It currently returns all results. Solution: Use the wpv_filter_query_post_process filter to drop all results when there is no taxonomy query provided in the search. add_filter( 'wpv_filter_query_post_process', 'wpv_empty_thema_no_results', 10, 3 ); function wpv_empty_thema_no_results( $query, $view_settings, $view_id ) { if( $view_id == 12345 ){ if( sizeof( $query->tax_query->queries ) < 1 ){ $query->posts = array(); $query->found_posts = 0; $query->post_count = 0; } } return $query; } Replace 12345 with the ID of your View. Relevant Documentation: https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_query_post_process |
2 | 9 | 7 years, 3 months ago |