On my site's main/index page, ( https://fotmd.com/ ) ...I have a section block in the bottom left corner for showing latest forum posts. It's set to show 30 posts, and has a scrollbar on the right. If you scroll all the way down to the last (30th) post there, there's an old pager that doesn't function correctly -and I'd like to simply remove that pager.
This sounds so dumb, but I'm not finding the code for that pager in my custom skin's Index.tpl ...which is where I would normally look for something like this. I've looked around various other templates too, used an inspector.... yet still can't figure out WHERE it is so I can remove the pager only from that location. D'oh!
NOTE: I do NOT want to remove that pager from the actual 'latest forum posts by Forums profile' page, which is here: https://fotmd.com/forums/forum/new_posts The pager on THAT page works correctly and I need to leave it there undisturbed. ...I ONLY want to remove the pager from the one widget/block on my site's main index page. I'm attaching a screenshot of the pager I want to remove from my site's main page.
Here is the code from my custom skin Index.tmpl that refers to that section/block, it's where I started looking first for the pager code to remove it, but I can't see any reference to a pager there:
{* BEGIN Latest Forum Posts Section *}
{if isset($_conf.mdFOTMD_March4_2018_top_discuss_active) && $_conf.mdFOTMD_March4_2018_top_discuss_active == 'on'}
{if isset($_conf.mdFOTMD_March4_2018_top_discuss_limit) && $_conf.mdFOTMD_March4_2018_top_discuss_limit > 5}
{assign var="post_pb" value=$_conf.mdFOTMD_March4_2018_top_discuss_limit}
{else}
{assign var="post_pb" value="5"}
{/if}
<br>
<div class="col5">
<div class="title" style="margin:10px;">
<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="42" default="Forum Posts"}{if strlen($_conf.mdFOTMD_March4_2018_forum_profile) > 0} <span class="normal"><a href="{$_conf.mdFOTMD_March4_2018_forum_profile}">{jrCore_lang skin=$_conf.jrCore_active_skin id="30" default="All"}</a></span>{/if}</h2>
</div>
<div style="{if !jrCore_is_mobile_device()}height:950px;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>
{/if}
{* END Latest Forum Posts Section *}
--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015
updated by @strumelia: 09/13/18 02:02:42AM