Hi everyone,
i am facing the following issue : i have a content type containing two different cck fields, one for the images the other for the videos.
Let's say i have in the end a node with the following content : picture1, picture2, picture3, video1, video2.
My goal is to put all that in a views carousel
When i display the elements in a simple block using views, everything works fine (i have to check the group several value for both fields).
Il i use the views carousel, i the have only the first picture displayed.
I have seen in the issues that i have to uncheck group several values stuff, is i do the carousel works but i only get the pictures.
The code looks like :
<li>
<picture1>
<video1>
</li>
<li>
<picture2>
<video1>
</li>
<li>
<picture3>
<video1>
</li>
<li>
<picture4>
<video1>
</li>
<li>
<picture1>
<video2>
</li>
<li>
<picture2>
<video2>
</li>
...
How can i proceed ?
Any idea anyone ?
Thanks a lot !!