With the Views plugin you can create different Views elements to display all your custom types and content on the front-end, without coding. You can also create powerful parametric searches and add pagination to your content lists.
When you ask for help or report issues, make sure to tell us the options of your View.
Viewing 15 topics - 3,946 through 3,960 (of 4,054 total)
Problem: I would like to create a filtered list of results and display them in a Masonry-style output. I would like to be able to click each item in the list and show a Lightbox-style popup with more information about that item.
Solution: Masonry and Lightbox interfaces are not built-in to Toolset, so some custom code will be required.
The issue here is that the user has some custom tabs that can be navigated through but the second tab isn't working. It is displaying blank
Solution:
Upon investigating this it seems there are some inconsistencies in the html that the user is using which is causing the second tabbed content to be placed in the first.
It is recommended that all html tags are correctly closed.
Problem:
How to only output fields (and any labels) if the field has a value, specifically in Elementor templates.
Solution:
You wrap the relevant section inside wpv-conditional shortcodes, as described in the linked documentation, so that you have something like this:
[wpv-conditional if="( $(wpcf-architect) ne '' )"]
Architect: [types field="architect"][/types]
[/wpv-conditional]
When inserting in an Elementor template you need to make sure this is inserted in a module which parses shortcodes, such as the Text or Shortcode modules, but NOT the HTML module, which does not parse shortcodes.