2

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

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

4

2 回答 2

2

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

如果你想要超级菜单,试试collective.collage.megamenu

于 2012-08-10T04:14:31.917 回答
1

您可以在您的 Plone 站点中使用http://pypi.python.org/pypi/plone.app.themingplugins插件来做到这一点。您只需在主题中添加一个文件夹:

overrides

并添加一个名为

webcouturier.dropdownmenu.browser.dropdown_sections.pt

与官方的内容(你可以从github复制粘贴它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,这取决于你。克隆的东西在这里解决了。

于 2012-08-10T14:43:10.813 回答