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 - 12,421 through 12,435 (of 12,438 total)
Problem: I have a custom search View with several filters. In the results, I would like to display posts and include taxonomy term links. Instead of linking to the term archive, I would like to use the links to further filter the custom search View.
Solution: This would require advanced JavaScript. If you're not concerned about maintaining the existing filters, you can construct your own custom links that use the proper URL parameter structure.
Problem:
A select custom field is used as a Views filter but shown as checkboxes so that more than one option can be selected, but the View results do not work as expected.
Solution:
You need to modify the query arguments with the wpv_filter_query hook before the query is run.
<div class="flexslider">
<ul class="slides">
<li>Shortcode for image 1</li>
<li>Shortcode for image 2</li>
<li>Shortcode for image 3</li>
<li>Shortcode for featured image</li>
</ul>
</div>
[php]
Then add this to the js section of your template.
[php]
jQuery(window).load(function() {
jQuery('.flexslider').flexslider();
});
Then follow the instructions in the link below to filter the view for the current post.
https://toolset.com/forums/topic/creating-and-image-slider-with-the-custom-values/#post-1100832