Sorry Shane, I missed something and only just discovered an issue I mentioned earlier.
I asked: Why is the gallery not using the image gallery from each listing?
You said...
I checked the filters on the view and saw that there isn't a filter that will restrict the view to display only for the current post being viewed. To resolve this you will need to add the Post ID query filter to your view and then set it to "Posts with IDs set by the View shortcode attribute".
Currently it defaults to the attribute ids, this is what you will use to pass the current post id into the view.
Example
1
[wpv-view name='my-view' ids='[wpv-post-id]']
Using the [wpv-post-id] shortcode, you can pass the current post id into the view to let the view filter for only the current post.
---ok
I don't understand this. I'm not using a shortcode I'm using a dynamic widget by Oxygen. Are you saying I need to replace the widget with a shortcode for this to work?
Sorry, I don't understand what I need to to ref the above?
You won't be able to use the dynamic widget with Oxygen to add the view. You will need to manually add the view to the page using the shortcode.
[wpv-view name='my-view' ids='[wpv-post-id]']
Where my-view is the slug of your view. This is essentially because you need to pass a shortcode parameter into the view which requires the use of the views shortcode.
The dynamic widget will only allow you to select the view but not allow you to pass a shortcode parameter to the view.
There is an easier way to do this. I just created the content template here hidden link
Then I just added this content template to the page using this shortcode below.
[wpv-post-body view_template="slider-content-template"]
Why did I use this ?
A. The [wpv-post-body] shortcode will try to render the current content of the page. This means it will use the ID of the current post to get its contents. However we can use this [wpv-post-body] shortcode and render the post body with a content template hence the shortcode [wpv-post-body view_template="slider-content-template"]
Given that this is the case then we can specify how we want the post body to render. In this case I just added the slider information and it rendered the information for the current post.
Everything should be fine now. If you have any questions on this please let me know.
It is quite odd that the content template goes blank after you have a look at the site. I've re-added the HTML code structure for the content template. This is the code that was added below.
Right it seems to be holding the settings. What you can do is to continue to check and let me know what are the exact steps that were taken and when you noticed that the code disappears again as this is not a normal scenario we need to understand why this is happening.
Also I went ahead and edited the oxygen template to see if this knocks out the HTML from the content template but it still doesn't occur.
Checked twice. All I ever did, last night and this morning was just opened the content template in Toolset.
I have to say, the code in there now, I have never seen before, which is even odder why or what makes in vanish.
I'll keep an eye on it.
Can I clarify a couple of things?
The images (slider) function is Toolset? Not Oxygen.
By that I mean the styling of the nav arrows, transition and dot nav that we have hidden?
All Oxygen is doing is displaying a Toolset slider?
Reason, on mobile the arrows being hidden is an issue. I don;t think visitors will know to touch their screen to get arrows.
I hate slideshows on auto settings. While we have disabled this, how do we reactivate it and speed it it?
The images (slider) function is Toolset? Not Oxygen.
By that I mean the styling of the nav arrows, transition and dot nav that we have hidden?
That is correct this slider is not from Toolset, it is using the flexslider library and we are passing the images from your custom fields into the slider.
So we don't have any inbuilt control over the nav arrows, transitions etc. For a reference on the flexslider please see the link below. hidden link
All Oxygen is doing is displaying a Toolset slider?
All oxygen is doing is displaying the content template that has the flexslider html markup and javascript language inside it.
Reason, on mobile the arrows being hidden is an issue. I don;t think visitors will know to touch their screen to get arrows.
The arrows appeared for me without being touched.
However to set the slide to autoslide you will add these attributes to the Javascript that is in the JS editor section.