Matthias Reichl
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Filter CSS / View problem
Commencé par : 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 | Il y a 6 années et 5 mois | |
Toolset Elementor widget: font problem / missing options
Commencé par : 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 | Il y a 6 années et 6 mois | |
How to show no initial results on a View until a Filter is set
Commencé par : 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 | Il y a 6 années et 6 mois | |
Site load: custom toolset css is loaded too late
Commencé par : Matthias Reichl
in: Toolset Professional Support
Problem: Solution: |
|
2 | 3 | Il y a 6 années et 6 mois | |
Using two views on the same filter
Commencé par : Matthias Reichl in: Toolset Professional Support |
|
2 | 10 | Il y a 6 années et 6 mois | |
Undefined class constant ‘WPML_CHECKBOX_SELECTED’
Commencé par : Matthias Reichl
in: Toolset Professional Support
Problem: Solution: |
|
2 | 4 | Il y a 6 années et 6 mois | |
Displaying only one item of each
Commencé par : Matthias Reichl
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
|
2 | 5 | Il y a 6 années et 7 mois |