Union and Join in Jamroom
Jamroom Developers
There's a whole set of JR functions specifically for working with data stores.
Let us know what you are trying to do and we can point you in the right direction.
<table>
{foreach from=$_items item="item}
{if $item.seamless_list_rank % 3 == 0}
<tr>
{/if}
<td width="33%">
{* Whatever is already inside your foreach loop *}
</td>
{if $item.seamless_list_rank % 3 == 0}
</tr>
{/if}
{/foreach}
</table>
<table>
{if $item.seamless_list_rank % 3 == 0}
<tr>
{/if}
<td width="33%">
Item code here
</td>
{if $item.seamless_list_rank % 3 == 0}
</tr>
{/if}
</table>
{if !jrCore_is_mobile_device() && !jrCore_is_tablet_device()}
{jrCore_include template="header.tpl"}
{else}
{jrCore_include template="meta.tpl"}
{/if}