I am trying to implement a portfolio_list for my portfolio items
My html template uses an owl carousel that brings the images in through css
I would like to be able to have the images pulled in from couch instead as the porfolio_image that is uploaded into couch.
As soon as I delete the extra items to then the page breaks and I get an error saying that Uncaught TypeError: Cannot read property 'clone' of undefined
Does anyone have experience with couch and owl carousel.
Here is the html template for the portfolo_list page:
<div class="mastwrap">
<div class="album-carousel owl-carousel">
<div class="item album-01 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>People Story</span></h1></a>
</div>
</div>
</div>
<div class="item album-02 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>City Outdoors</span></h1></a>
</div>
</div>
</div>
<div class="item album-03 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>The Crowd</span></h1></a>
</div>
</div>
</div>
<div class="item album-04 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>Eyes of Truth</span></h1></a>
</div>
</div>
</div>
<div class="item album-05 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>Bricks Town</span></h1></a>
</div>
</div>
</div>
</div>
</div>
And this is what I have tried to do with it but cannot get it to work:
<cms:embed 'menu.html' />
<div class="mastwrap">
<cms:pages masterpage='portfolio.php' >
<div class="album-carousel owl-carousel">
<div class="item fullheight"><cms:show portfolio_image />
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="<cms:show k_page_link />"><h1 class="white font2"><span><cms:show k_page_title /></span></h1></a>
</div>
</div>
</div>
</div>
</cms:pages>
</div>
Any help would be appreciated
Thank you
My html template uses an owl carousel that brings the images in through css
I would like to be able to have the images pulled in from couch instead as the porfolio_image that is uploaded into couch.
As soon as I delete the extra items to then the page breaks and I get an error saying that Uncaught TypeError: Cannot read property 'clone' of undefined
Does anyone have experience with couch and owl carousel.
Here is the html template for the portfolo_list page:
<div class="mastwrap">
<div class="album-carousel owl-carousel">
<div class="item album-01 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>People Story</span></h1></a>
</div>
</div>
</div>
<div class="item album-02 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>City Outdoors</span></h1></a>
</div>
</div>
</div>
<div class="item album-03 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>The Crowd</span></h1></a>
</div>
</div>
</div>
<div class="item album-04 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>Eyes of Truth</span></h1></a>
</div>
</div>
</div>
<div class="item album-05 fullheight">
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="album-single.html"><h1 class="white font2"><span>Bricks Town</span></h1></a>
</div>
</div>
</div>
</div>
</div>
And this is what I have tried to do with it but cannot get it to work:
<cms:embed 'menu.html' />
<div class="mastwrap">
<cms:pages masterpage='portfolio.php' >
<div class="album-carousel owl-carousel">
<div class="item fullheight"><cms:show portfolio_image />
<div class="albums-overlay fullheight">
<div class="valign text-center">
<a href="<cms:show k_page_link />"><h1 class="white font2"><span><cms:show k_page_title /></span></h1></a>
</div>
</div>
</div>
</div>
</cms:pages>
</div>
Any help would be appreciated
Thank you