JrSeamless will not work
Installation and Configuration
jrSeamless is returning items from different datastores so there are going to be a mix of different 'prefixes' for the item variables, in this case 'video' and 'youtube'. Any template used with jrSeamless is going to need some conditional statements to handle the different prefixes -
{if isset($_items)}
{foreach from=$_items item="item"}
{if $item.seamless_module_name == "jrVideo"}
{* Show the video details *}
{elseif $item.seamless_module_name == "jrYouTube"}
{* Show the youtube details *}
{/if}
{/foreach}
{/if}
Initially, try -
{jrSeamless_list modules="jrVideo,jrYouTube" order_by="_created DESC" limit="16""}This will use the default jrSeamless template and confirm that you are getting items to display. You can then start work on your custom template.
hth
Pa
updated by @paul: 04/03/14 04:19:35AM