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