Help removing pager
Using Jamroom
Thanks Steve.
At first before posting this thread, I had removed some end code from that section in my custom skin Index.tmpl
going from:
<div style="{if !jrCore_is_mobile_device()}height:985px;overflow-y:scroll;overflow-x:hidden;{/if}padding:0 10px;margin-right: 10px">
{jrCore_list module="jrForum" quota_check=false search="forum_post_count > 0" order_by="forum_updated desc" template="index_forum.tpl" pagebreak=$post_pb page=$_post.p}
</div>
<div style="{if !jrCore_is_mobile_device()}height:985px;overflow-y:scroll;overflow-x:hidden;{/if}padding:0 10px;margin-right: 10px">
{jrCore_list module="jrForum" quota_check=false search="forum_post_count > 0" order_by="forum_updated desc" template="index_forum.tpl"}
</div>
Then, as you suggested, I removed only the "page =...p" part of it. That didn't work either.
Finally I put it back as it was originally and added the pager false part you suggested, so it was like this:
<div style="{if !jrCore_is_mobile_device()}height:985px;overflow-y:scroll;overflow-x:hidden;{/if}padding:0 10px;margin-right: 10px">
{jrCore_list module="jrForum" quota_check=false search="forum_post_count > 0" order_by="forum_updated desc" template="index_forum.tpl" pagebreak=$post_pb page=$_post.p pager="false"}
</div>
sigh... this is so stupid.
updated by @strumelia: 06/12/18 11:09:32AM