0
我添加類似於「顯示11條目中的1到10」「顯示11條目的11到11」到搜索結果頁面。顯示x到y的z條目
$listing_search.listings_per_page = 10
$listing_search.current_page = 2
$listings_number = 11
我無法得到正確的公式。 。請分享一些光。
[[Showing ]] {if $listing_search.current_page == 1}1{else}{$listing_search.listings_per_page+1} {/if}
[[ to ]] {$listing_search.listings_per_page}[[ of ]] {$listings_number} {if $listings_number == 1}[[ Job]]{else}[[ Jobs]]{/if}
對頁面3,4等的任何建議?那是同一個公式嗎?
我只能測試11個條目。這是我編輯的。
{assign var="current_page" value = $listing_search.current_page}
{assign var="listings_per_page" value = $listing_search.listings_per_page}
{math assign="first_page" equation="(cp - 1) * lpp + 1" cp=$current_page lpp=$listings_per_page }
{math assign="last_page" equation="(cp * lpp)" cp=$current_page lpp=$listings_per_page }
<div class="" id="DataTables_Table_1_info">[[Showing ]] {if $first_page}{$first_page} {else}[[1]]{/if} [[to]] {if $last_page <= $listings_number}{$last_page}{else} {$listings_number}{/if}
[[of]] {$listings_number} {if $listings_number == 1}[[ Job]]{else}[[ Jobs]]{/if}</div>