pagination issue
Jamroom Help
i have a test page here with the idea that people post a lot of songs and soundcloud songs to my site.
This is a blended page of both which works great except for the pagination issue at the bottom.
http://www.versionist.net/index1
main code for seamless is
{jrSeamless_list modules="jrAudio,jrSoundCloud" order_by="_created desc" template="seamless_row.tpl" pagebreak=$_conf.versionist1_default_pagebreak page=$_post.p}
it is page breaking correctly @27 items which is what i have set in the admin/site settings.
This is the code for seamless_row.tpl
{foreach from=$_items item="item"}
{if $item.seamless_list_rank % 3 == 0}
{/if}
{if is_file("`$jamroom_dir`/modules/`$item.seamless_module_name`/templates/item_list1.tpl")}
{jrSeamless_parse_template template="item_list1.tpl" _vars=$item module=$item.seamless_module_name}
{else}
{jrCore_lang module="jrSeamless" id="2" default="Error: Template not found"}
{/if}
{if $item.seamless_list_rank % 3 == 0}
{/if}
{/foreach}
the tem_list1.tpl has the following
in soundcloud it just has the code from the souncloud row
in audio it has the code from the music_row
updated by @chorton581: 07/10/14 09:40:13AM