Greeting dear Chouchies!!!
I am doing the a product display that actually consists of
1. TABS (i have used: Easy Responsive Tabs to Accordian)
2. Owl Carousel
I am displaying the products and their descriptions in the Owl Carousel by the concept of Blogs (as in documentation).
I want to be able to display the products in their respective folders. something as shown in the image below:
The folder1, folder2.... are actually my dynamic folders coming from the the products templates on to the home page of the site. the tests are the products...
My problem is that all the posts are being shown in only one tab (folder) while the others are coming up blank.
My code is:
While the posts should be only displayed in their own tab (folder). Where am I going wrong?
Please comment!!!
Regards,
GenXCoders
I am doing the a product display that actually consists of
1. TABS (i have used: Easy Responsive Tabs to Accordian)
2. Owl Carousel
I am displaying the products and their descriptions in the Owl Carousel by the concept of Blogs (as in documentation).
I want to be able to display the products in their respective folders. something as shown in the image below:
The folder1, folder2.... are actually my dynamic folders coming from the the products templates on to the home page of the site. the tests are the products...
My problem is that all the posts are being shown in only one tab (folder) while the others are coming up blank.
My code is:
- Code: Select all
<div id="tab-container">
<div id="parentHorizontalTab">
<ul class="resp-tabs-list hor_1">
<cms:embed 'package_folder.html' />
</ul>
<div class="resp-tabs-container hor_1">
<cms:folders masterpage='packages.php'>
<div>
<div id="demo">
<div class="container">
<div class="row">
<div id="owl-demo<cms:show k_couct />" class="owl-carousel">
<cms:pages masterpage='packages.php'>
<div class="boxes">
<div class="clear-10"></div>
<img class="boximg" src="<cms:show package_image/>"/>
<div class="title">
<h5 class="packages-title"><cms:show k_page_title/></h5>
</div>
<div class="packages-text">
<p><cms:excerptHTML count='15'><cms:show package_content/></cms:excerptHTML></p>
</div>
<div class="title">
<h5 class="package-price">Rs. 50,000/-<cms:show tab_price/></h5>
</div>
<center><a href="<cms:show k_page_link />" class="btn">Details</a></center>
</div>
</cms:pages>
</div>
</div>
</div>
</div>
</div>
</cms:folders>
</div>
</div>
</div>
While the posts should be only displayed in their own tab (folder). Where am I going wrong?
Please comment!!!
Regards,
GenXCoders