我有一個擴展tx_news中的widget.paginate位置的問題,我正在TYPO3訴6.1 FLUID/EXTBASE工作。TYPO3 tx_news,與widget.paginate的位置問題
我的問題是它默認顯示widget.paginate,在我的列表中顯示UL標籤的Templates/News/list.html中。我希望它在UL標籤之外,我嘗試過移動它,但隨後它會對我的佈局做出一些重大更改,或根本不起作用。
看到頁面的底部 - enter link description here
我怎樣才能顯示UL之外,它後PAGINATE鏈接/小工具?
我的模板/新聞/ list.html代碼
{namespace n=Tx_News_ViewHelpers}
<f:layout name="General" />
<!--
=====================
Templates/News/List.html
-->
<f:section name="content">
<f:if condition="{news}">
<f:then>
<div class="news-list-view">
<ul class="cbp_tmtimeline {newsItem.type}{f:if(condition: newsItem.istopnews, then: ' topnews')}">
<f:if condition="{settings.hidePagination}">
<f:then>
<f:for each="{news}" as="newsItem">
<f:render partial="List/Item" arguments="{newsItem: newsItem, settings:settings}" />
</f:for>
</f:then>
<f:else>
<n:widget.paginate objects="{news}" as="paginatedNews" configuration="{settings.list.paginate}">
<f:for each="{paginatedNews}" as="newsItem">
<f:render partial="List/Item" arguments="{newsItem: newsItem, settings:settings}" />
</f:for>
</n:widget.paginate>
</f:else>
</f:if>
</ul>
</div>
</f:then>
<f:else>
<div class="no-news-found">
<f:translate key="list_nonewsfound" />
</div>
</f:else>
</f:if>
</f:section>
嗨RaD0,paginate的默認模板,工作正常,它只是放置它,這就是問題。所以它的n:widget.paginate多數民衆贊成多數民衆贊成在我想在我的網頁上放置/呼叫另一個地方。 –
如果您不是新聞列表的默認模板,那麼編寫您自己的模板是一個好主意,而不是默認情況下更改Extension所附帶的模板。我編輯了我的答案。 – dora