Views is a WordPress plugin that lets you easily display content on your website's front-end in any way you choose.
Views User Guides include detailed documentation for creating lists of content, templates for content and archive page and also explain how to create parametric searches for any content type.
When you ask for help or report issues, make sure to tell us the versions of the Toolset plugins that you have installed and activated.
Viewing 15 topics - 1,726 through 1,740 (of 2,123 total)
Problem:
The user was trying to implement a view filter that will compare values as numbers(>= <=, etc.) for a checkboxes field.
Solution:
It won't be possible to search using a comparison on a Checkboxes field. Because the field's values are stored as serialized arrays, and search within them is always performed using a "LIKE" operator. Check the possible operator for custom field search here https://developer.wordpress.org/reference/classes/wp_meta_query/
If you need to use "greater than" operator you will need to use a different field type.
I'll suggest using a select field instead of a checkboxes field. You may also use a number field or a single-line field.
Problem:
The user asks about the feature of having a sort order for related posts.
Solution:
This feature is not available by default. We have added it to our feature request list, and hopefully, we'll release it in an upcoming version.
The issue here is that the user's views weren't loading at all on the frontend. Solution:
Checking on the issue here I found that the views were being loaded as the view's debug information was returning the correct data but nothing was displayed on the page.
This issue turned out to be caused by the user running an older and outdated version of wordpress. Updating to the latest version of wordpress resolved the issue.