All I did was to re-add the shortcode back to the section that you want the results only to be displayed.
[wpv-view name="resource-library" view_display="layout"]
on the same page I am trying to place a static element in the middle of the results ... i was just wandering if this is possible. see the attached image.
so the page flow is:
filter
results
*static element*
results
I know I can put 2 views on the same page, was just not sure how to make both views (if possible) to be included in the filter.
in the image I have the static item circle in red. was not sure if this was possible to do or not.
First you can use the [wpv-item ] shortcode and specify an index where you want to insert the static content.
Example
<Code>
[wpv-item index=5]
SOme static content below.
[/php]
This will replace the 6th index of the view loop with the static content you can still add your template to the index as well so the original content still displays but this gives you the option to modify what appears at the 6th index.
Or you can use [wpv-loop-index] to get the current index and then use the conditional shortcode to insert the static information based on the current index.