dongyu2764 2015-11-24 10:48
浏览 45

typo3 extbase:仅在某些页面上显示部分

On a page and all of its subpages, I want to include a certain section. In my default template I added this:

<div class="container">
    <f:render section="Productsearch"/>
</div>

But I want this section to only be included on certain pages. How can I achieve this?

  • 写回答

1条回答 默认 最新

  • douzhoulei8959 2015-11-24 10:51
    关注

    Use a different layout on these pages. You can probably do this by using a setting (plugins.tx_yourext.settings.layoutName = Layout2.html), and then using that in the template:

    <f:layout name="{settings.layoutName}"/>
    

    The layout on the special pages renders the section, the usual layout does not render it.

    EDIT: You could also just use a condition in the layout. Set plugins.tx_yourext.settings.showProductSearch = 1 (or 0) on the pages, preferrably using a TypoScript constant. Then use it in a condition:

    <f:if condition="{settings.showProductSearch}">
        <f:render section="Productsearch"/>
    </f:if>
    
    评论

报告相同问题?

悬赏问题

  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本