reimundH
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 |
---|---|---|---|---|---|
Adjusting the picture size of View-Results and Grid-Layout for Mobile
Gestartet von: reimundH in: Toolset Professional Support |
2 | 8 | vor 4 Jahren, 2 Monaten | ||
Elementor Toolset View is not showing the “Custom Search” panel option
Gestartet von: reimundH in: Toolset Professional Support |
2 | 3 | vor 4 Jahren, 2 Monaten | ||
Bilder Alt Text wird nicht berücksichtigt
Gestartet von: reimundH in: Toolset Professioneller Support |
2 | 3 | vor 4 Jahren, 9 Monaten | ||
View – Custom search – Add additional search-requirement
Gestartet von: reimundH in: Toolset Professioneller Support |
2 | 8 | vor 5 Jahren, 3 Monaten | ||
View – newest 100
Gestartet von: reimundH
in: Toolset Professional Support
Problem: I would like to use a View to display 100 results in reverse chronological order based on the post date. Solution: add_filter( 'wpv_view_settings', 'tssupp_modify_filter_offset_view', 5, 2 ); function tssupp_modify_filter_offset_view( $view_settings, $view_id ) { $views = array( 12345 ); $max = 100; if ( in_array($view_id, $views) ) { $view_settings['limit'] = $max; } return $view_settings; } Change 12345 to match the View's ID. Relevant Documentation: |
2 | 5 | vor 5 Jahren, 5 Monaten | ||
Custom search – Submit & Reset button style
Gestartet von: reimundH in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 6 Monaten | ||
Site Reviews Shortcode error
Gestartet von: reimundH
in: Toolset Professional Support
Problem: I would like to display a Site Reviews form on my site, but it needs to be specific to the current post. I can't seem to use the site_reviews_form shortcode in a Custom Field in my Elementor template. Solution: Use a Text Editor element and the syntax as shown here: [site_reviews_form assign_to="[wpv-post-id]"] |
3 | 13 | vor 5 Jahren, 6 Monaten | ||
Layout setting
Gestartet von: reimundH in: Toolset Professional Support |
2 | 6 | vor 5 Jahren, 6 Monaten | ||
Search for working hours
Gestartet von: reimundH in: Toolset Professional Support |
2 | 11 | vor 5 Jahren, 6 Monaten | ||
Sort and paginate the custom search results
Gestartet von: reimundH
in: Toolset Professional Support
Problem: I would like to set up a custom search View that is paginated with 30 posts per page, and I would like to configure sorting criteria for the results. Solution: You can find ordering, limit, and pagination options in the View editor screen. If any of these options are not visible, scroll to the top right corner of the screen and click "Screen Options". You can turn different configuration panels on or off. When you create a View, the option you choose in the popup determines which configuration panels are shown in the View editor. "Full custom display mode" will show all the available configuration panels. Relevant Documentation: |
2 | 3 | vor 5 Jahren, 6 Monaten | ||
Layout / Types & Views hamper the Elementor
Gestartet von: reimundH in: Toolset Professional Support |
2 | 15 | vor 5 Jahren, 6 Monaten | ||
Custom search view malfunction
Gestartet von: reimundH in: Toolset Professional Support |
1 | 2 | vor 5 Jahren, 6 Monaten | ||
Dropdown with checkboxes for multi choose
Gestartet von: reimundH in: Toolset Professional Support |
2 | 3 | vor 5 Jahren, 6 Monaten | ||
Taxonomie – Checkboxes – Layout / Picture show as lightbox
Gestartet von: reimundH
in: Toolset Professional Support
Problem: I have a taxonomy filter that is shown using checkboxes. I would like to display those filters in several columns instead of one long list. Solution: <div class="form-group"> <label>[wpml-string context="wpv-views"]Nationality[/wpml-string]</label> <div class="four-columns"> [wpv-control-post-taxonomy taxonomy="nationality" type="checkboxes" format="%%NAME%%" orderby="none" url_param="wpv-nationality"] </div> </div> Then you would add this code to the CSS panel below your View's Search and Pagination editor: four-columns { -webkit-column-count: 4; /* Chrome, Safari, Opera */ -moz-column-count: 4; /* Firefox */ column-count: 4; } |
2 | 5 | vor 5 Jahren, 6 Monaten | ||
How to generate the URL for a link
Gestartet von: reimundH
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 5 | vor 5 Jahren, 7 Monaten |