I have a page that I need to list a bunch of videos, titles and descriptions. I set up the details page and the list page. When I try to embed the video list page for the else statement I get this error: Error embedding file.... using this tag just before the </cms:if>:
I am using PHP for some nav includes on every page of the site and not sure if that is breaking it. When using the if k_is_page tag and else tag can you embed a php file to display the list of pages (videos)?
Here is some sample code from the page:
- Code: Select all
<cms:else />
<cms:embed 'video_list.php' />
I am using PHP for some nav includes on every page of the site and not sure if that is breaking it. When using the if k_is_page tag and else tag can you embed a php file to display the list of pages (videos)?
Here is some sample code from the page:
- Code: Select all
<?php include_once ('header.php') ?>
<cms:pages masterpage='resources/videos.php' >
<article class="post post-medium">
<div class="row">
<div class="col-md-5">
<div class="post-image">
<div class="portfolio-item">
<div>
<div class="img-thumbnail">
<iframe width="445" height="315" src="<cms:show video />?rel=0&autoplay=0&wmode=opaque&feature=player_embedded1&controls=0&showinfo=1" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-7">
<div class="post-content">
<h2><a href="<cms:show k_page_link />"><cms:show k_page_title /></a></h2>
<p><cms:show video_desc /></p>
</div>
</div>
</div>
</article>
</cms:pages>