修改dropdown_sections.pt(webcouturier.dropdownmenu)

时间:2012-08-09 02:00:47

标签: plone

有没有人有通过ZMI修改dropdown_sections.pt的经验?这是webcouturier.dropdownmenu附带的页面模板。我想修改它并将其变成一个大型菜单(支持列的菜单)?有可能吗?

我正在使用plone.app.theming来实现这一点。

2 个答案:

答案 0 :(得分:2)

该模板未在portal_view_customizations中公开。它是从文件系统调用的。

如果您想要超级菜单,请尝试collective.collage.megamenu

答案 1 :(得分:1)

您可以在Plone网站中使用http://pypi.python.org/pypi/plone.app.themingplugins插件执行此操作。您只需在主题中添加一个文件夹:

overrides

并添加名为

的文件
webcouturier.dropdownmenu.browser.dropdown_sections.pt

使用官方内容(您可以从githuba https://github.com/collective/webcouturier.dropdownmenu/blob/master/src/webcouturier/dropdownmenu/browser/dropdown_sections.pt

复制粘贴)
<tal:sections tal:define="portal_tabs view/portal_tabs"
 tal:condition="portal_tabs"
 i18n:domain="plone">
<h5 class="hiddenStructure" i18n:translate="heading_sections">Sections</h5>

<ul id="portal-globalnav"
    tal:define="selected_tab python:view.selected_portal_tab"
    ><tal:tabs tal:repeat="tab portal_tabs"
    ><li tal:define="tid tab/id;
                     subitems python:view.getTabObject(tabUrl = tab['url'], tabPath = tab.get('path'));
                     item_clickable python:view.enable_parent_clickable or not subitems"
         tal:attributes="id string:portaltab-${tid};
                         class python:selected_tab==tid and 'selected' or 'plain'"
        ><a href=""
           tal:content="tab/name"
           tal:attributes="href tab/url;
                           title tab/description|nothing;
                           class python:item_clickable and 'plain' or 'noClick'">
        Tab Name
        </a
        ><tal:block tal:condition="subitems">
            <ul class="submenu">
                <tal:subitems tal:replace="structure subitems">
                    <tal:comment replace="nothing">Submenu</tal:comment>
                </tal:subitems>
            </ul>
        </tal:block></li></tal:tabs></ul>
</tal:sections>

关于你如何做一个megamenu,它取决于你。 plone的东西在这里解决了。