Jump to content

Pagination for topic view in mobile skin


The Old Man

Recommended Posts

  • 5 months later...

Replace the pagination in forum view with this

<span class='mini_pagination'>

                                    <foreach loop="pages:$data['pages'] as $page">

                                            <if test="haslastpage:|:$page['last']">

                                                <a href="{parse url="showtopic={$data['tid']}&amp;st={$page['st']}" seotitle="{$data['title_seo']}" template="showtopic" base="public"}" title='{$this->lang->words['topic_goto_page']} {$page['page']}'>{$page['page']} {$this->lang->words['_rarr']}</a>

                                            <else />

                                                <a href="{parse url="showtopic={$data['tid']}&amp;st={$page['st']}" seotitle="{$data['title_seo']}" template="showtopic" base="public"}" title='{$this->lang->words['topic_goto_page']} {$page['page']}'>{$page['page']}</a>

                                            </if>

                                    </foreach>

                                </span>

Link to comment
Share on other sites

  • 2 months later...

Replace the pagination in forum view with this



<span class='mini_pagination'>

									<foreach loop="pages:$data['pages'] as $page">

											<if test="haslastpage:|:$page['last']">

												<a href="{parse url="showtopic={$data['tid']}&amp;st={$page['st']}" seotitle="{$data['title_seo']}" template="showtopic" base="public"}" title='{$this->lang->words['topic_goto_page']} {$page['page']}'>{$page['page']} {$this->lang->words['_rarr']}</a>

											<else />

												<a href="{parse url="showtopic={$data['tid']}&amp;st={$page['st']}" seotitle="{$data['title_seo']}" template="showtopic" base="public"}" title='{$this->lang->words['topic_goto_page']} {$page['page']}'>{$page['page']}</a>

											</if>

									</foreach>

								</span>

Just to be clear you want us to replace: Look and Feel -> IP Board Mobile -> Global Template -> paginationTemplate?


<if test="haspages:|:$work['pages'] > 1">

<if test="prevpage:|:$work['current_page'] > 1">

  <a class="button page-button prev" href="{parse url="{$data['baseUrl']}&amp;{$data['startValueKey']}={parse expression="intval( $data['currentStartValue'] - $data['itemsPerPage'] )"}" base="{$data['base']}" seotitle="{$data['seoTitle']}" template="{$data['seoTemplate']}"}" title="{$this->lang->words['tpl_prev']}" rel='prev'>{$this->lang->words['_laquo']} {$this->lang->words['mob_prev']}</a>

<else />

  <a class="button page-button disabled prev" href="#">{$this->lang->words['_laquo']} {$this->lang->words['mob_prev']}</a>

</if>

<if test="nextpage:|:$work['current_page'] < $work['pages']">

  <a class="button page-button next" href="{parse url="{$data['baseUrl']}&amp;{$data['startValueKey']}={parse expression="intval( $data['currentStartValue'] + $data['itemsPerPage'] )"}" base="{$data['base']}" seotitle="{$data['seoTitle']}" template="{$data['seoTemplate']}"}" title="{$this->lang->words['tpl_next']}" rel='next'>{$this->lang->words['mob_next']} {$this->lang->words['_raquo']}</a>

<else />

  <a class="button page-button disabled next" href="#">{$this->lang->words['mob_next']} {$this->lang->words['_raquo']}</a>

</if>

</if>



I did try that but it didnt work, and I didnt find "pagination" in the forum view. Perhaps this is for 3.2? I am running 3.3

Any insight would be appreciated. Thanks.

Link to comment
Share on other sites

No, this is for forum view > forumindextemplate search for

<span class='mini_pagination'>

It adds the 1 2 3 4 page numbers back into forum view as whenever you click a topic currently it just sends you to the newest post, no way of viewing the first page.

Link to comment
Share on other sites

  • 4 months later...

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...