reimundH
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Adjusting the picture size of View-Results and Grid-Layout for Mobile
Iniciado por: reimundH en: Toolset Professional Support |
2 | 8 | hace 4 años, 3 meses | ||
Elementor Toolset View is not showing the “Custom Search” panel option
Iniciado por: reimundH en: Toolset Professional Support |
2 | 3 | hace 4 años, 3 meses | ||
Bilder Alt Text wird nicht berücksichtigt
Iniciado por: reimundH en: Toolset Professioneller Support |
2 | 3 | hace 4 años, 10 meses | ||
View – Custom search – Add additional search-requirement
Iniciado por: reimundH en: Toolset Professioneller Support |
2 | 8 | hace 5 años, 4 meses | ||
View – newest 100
Iniciado por: reimundH
en: 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 | hace 5 años, 6 meses | ||
Custom search – Submit & Reset button style
Iniciado por: reimundH en: Toolset Professional Support |
2 | 2 | hace 5 años, 7 meses | ||
Site Reviews Shortcode error
Iniciado por: reimundH
en: 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 | hace 5 años, 7 meses | ||
Layout setting
Iniciado por: reimundH en: Toolset Professional Support |
2 | 6 | hace 5 años, 7 meses | ||
Search for working hours
Iniciado por: reimundH en: Toolset Professional Support |
2 | 11 | hace 5 años, 7 meses | ||
Sort and paginate the custom search results
Iniciado por: reimundH
en: 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 | hace 5 años, 7 meses | ||
Layout / Types & Views hamper the Elementor
Iniciado por: reimundH en: Toolset Professional Support |
2 | 15 | hace 5 años, 7 meses | ||
Custom search view malfunction
Iniciado por: reimundH en: Toolset Professional Support |
1 | 2 | hace 5 años, 7 meses | ||
Dropdown with checkboxes for multi choose
Iniciado por: reimundH en: Toolset Professional Support |
2 | 3 | hace 5 años, 7 meses | ||
Taxonomie – Checkboxes – Layout / Picture show as lightbox
Iniciado por: reimundH
en: 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 | hace 5 años, 7 meses | ||
How to generate the URL for a link
Iniciado por: reimundH
en: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 5 | hace 5 años, 8 meses |