我在扩展名tx_news中的widget.paginate位置有问题,我在TYPO3 v.6.1 FLUID / EXTBASE中工作。
我的问题是它默认显示widget.paginate,在我的列表中的Templates / News / list.html中显示UL标记。我希望它在UL标签之外,我试图移动它,但随后它对我的布局做了一些重大改变,或根本不工作。
请参阅页面底部 - enter link description here
如何在UL之外和之后显示分页链接/小部件?
我的模板/新闻/ 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>
答案 0 :(得分:1)
您可以覆盖默认的分页模板并定义自己的模板
将此添加到您的TS模板:
plugin.tx_news.settings.list.paginate.templatePath = YourNewTemplatePath.html
要了解默认模板的工作原理,请查看此Default Template以获取参考,并相应地修改您的视图。
如果您尝试编辑默认新闻列表,请更改默认新闻路径并在该文件中写入您的FLUID模板:
plugin.tx_news.view.templateRootPath = YourNewTemplateNews.html
在小部件之前关闭标记。当然,你必须在CSS中做一些改变才能得到你想要的东西。
</ul>
<f:else>
<n:widget.paginate>.......
答案 1 :(得分:0)
您好我在模板/新闻/ 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>
<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}">
<div class="news-list-view">
<ul class="cbp_tmtimeline {newsItem.type}{f:if(condition: newsItem.istopnews, then: ' topnews')}">
<f:for each="{paginatedNews}" as="newsItem">
<f:render partial="List/Item" arguments="{newsItem: newsItem, settings:settings}" />
</f:for>
</ul>
</div>
</n:widget.paginate>
</f:else>
</f:if>
</f:then>
<f:else>
<div class="no-news-found">
<f:translate key="list_nonewsfound" />
</div>
</f:else>
</f:if>
</f:section>