Matthias Reichl
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 |
---|---|---|---|---|---|
Filter CSS / View problem
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: How can I set the background-color of radio field, when a filter is selected / checked? The color should be the same like hover. Solution: It needs some custom JS codes, see details here: Relevant Documentation: |
3 | 11 | 6 years, 2 months ago | ||
Toolset Elementor widget: font problem / missing options
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: The issue is that the user font in the view is missing. Solution: In this case it seems that the view was not inheriting the global font. For this you will need to manually set the font. |
2 | 8 | 6 years, 3 months ago | ||
How to show no initial results on a View until a Filter is set
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: Solution: /** * No initial results * * Don't show View results until a filter has been applied * * Tests for custom field filters, taxonomy filters, or text searches */ function tssupp_no_initial_results( $query_results, $view_settings, $view_id ){ $target_views = array( 226 ); // Edit to add IDs of Views to add this to if ( in_array( $view_id, $target_views ) ) { // if there is a search term set if ( !isset( $query_results->query['meta_query'] ) && !isset( $query_results->query['tax_query'] ) && !isset( $query_results->query['s'] ) ) { $query_results->posts = array(); $query_results->post_count = 0; $query_results->found_posts = 0; } } return $query_results; } add_filter( 'wpv_filter_query_post_process', 'tssupp_no_initial_results', 10, 3 ); Relevant Documentation: |
3 | 14 | 6 years, 3 months ago | ||
Site load: custom toolset css is loaded too late
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 3 months ago | ||
Using two views on the same filter
Started by: Matthias Reichl in: Toolset Professional Support |
2 | 10 | 6 years, 3 months ago | ||
Undefined class constant ‘WPML_CHECKBOX_SELECTED’
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 6 years, 3 months ago | ||
CSS Customizations: view
Started by: Matthias Reichl
in: Toolset Professioneller Support
Problem: Solution: Relevant Documentation: |
2 | 10 | 6 years, 4 months ago | ||
Displaying only one item of each
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | 6 years, 4 months ago | ||
Loading time optimization
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: I would like to improve my site's initial page download time. Solution: A caching plugin may be helpful, since there are several processor-intensive plugins and themes in place, as well as complex queries. Use Query Monitor to time individual queries required for the page load. Any single query that takes longer than 0.5ms should be investigated in more detail. |
2 | 8 | 6 years, 5 months ago | ||
Toolset layouts with page builders
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: Solution: |
2 | 7 | 6 years, 6 months ago | ||
Views filter by date greater than [TODAY] brings wrong results
Started by: Matthias Reichl
in: Toolset Professional Support
Problem: The issue here is that the user's date filter is not working correctly and is giving wrong results. Solution: It should be noted that our date filters work by using the timestamp and our fields store the information on dates as a timestamp, so when creating filters for dates it should be set to a number instead of a date. |
2 | 6 | 6 years, 6 months ago | ||
Use Custom Function in a query filter – Syntax problem
Started by: Matthias Reichl in: Toolset Professional Support |
2 | 4 | 6 years, 6 months ago | ||
Some posts are hidden from admin overview
Started by: Matthias Reichl in: Toolset Professioneller Support |
3 | 16 | 6 years, 6 months ago | ||
after add new post in custom post type, not show on filter
Started by: Matthias Reichl
in: Toolset Professioneller Support
Problem: I have a filtered View that does not always show all the matching results. Solution: Be sure to uncheck "Don't include the current page in query results" unless it is absolutely necessary. |
3 | 7 | 6 years, 6 months ago | ||
WooCommerce view for creating custom reports
Started by: Matthias Reichl in: Toolset Professional Support |
2 | 2 | 6 years, 7 months ago |