reimundH
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 |
---|---|---|---|---|---|
Adjusting the picture size of View-Results and Grid-Layout for Mobile
Started by: reimundH in: Toolset Professional Support |
2 | 8 | 4 years, 2 months ago | ||
Elementor Toolset View is not showing the “Custom Search” panel option
Started by: reimundH in: Toolset Professional Support |
2 | 3 | 4 years, 3 months ago | ||
Bilder Alt Text wird nicht berücksichtigt
Started by: reimundH in: Toolset Professioneller Support |
2 | 3 | 4 years, 9 months ago | ||
View – Custom search – Add additional search-requirement
Started by: reimundH in: Toolset Professioneller Support |
2 | 8 | 5 years, 3 months ago | ||
View – newest 100
Started by: 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 | 5 years, 5 months ago | ||
Custom search – Submit & Reset button style
Started by: reimundH in: Toolset Professional Support |
2 | 2 | 5 years, 6 months ago | ||
Site Reviews Shortcode error
Started by: 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 | 5 years, 6 months ago | ||
Layout setting
Started by: reimundH in: Toolset Professional Support |
2 | 6 | 5 years, 6 months ago | ||
Search for working hours
Started by: reimundH in: Toolset Professional Support |
2 | 11 | 5 years, 6 months ago | ||
Sort and paginate the custom search results
Started by: 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 | 5 years, 6 months ago | ||
Layout / Types & Views hamper the Elementor
Started by: reimundH in: Toolset Professional Support |
2 | 15 | 5 years, 6 months ago | ||
Custom search view malfunction
Started by: reimundH in: Toolset Professional Support |
1 | 2 | 5 years, 6 months ago | ||
Dropdown with checkboxes for multi choose
Started by: reimundH in: Toolset Professional Support |
2 | 3 | 5 years, 6 months ago | ||
Taxonomie – Checkboxes – Layout / Picture show as lightbox
Started by: 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 | 5 years, 6 months ago | ||
How to generate the URL for a link
Started by: reimundH
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 5 | 5 years, 7 months ago |