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,436 through 12,450 (of 12,457 total)
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
Problem:
Creating a Content Template for a post type to be used with the Impreza theme results in the Header and Footer not being displayed. (It was necessary to register the theme function "us_load_template" for Content Templates to work at all with Impreza.)
Solution:
In the Impreza theme settings it was necessary to explicitly set the header and footer for the custom post type, "default" didn't work.