この進歩にも感謝したいと思います。
enable custom sidebar sections は設定で有効にする必要があることに注意してください。また、そこに許可されたグループのみが「このセクションを公開し、全員に表示する」とマークされたカスタムセクションを見ることができます。したがって、特定のグループにグローバルカスタムセクションを表示するには、それらのグループが独自の個人メニューを実装することも許可する必要があります。
また、管理者が提供するグローバルに表示されるセクションが最も役立つためには、匿名(ログインしていない)訪問者にも表示される必要があると思いますが、現在はそうではありません。
セクションの並べ替えができません
私もこれを必要としていますが、コミュニティメニューをカスタマイズする機能も必要です。しかし、その間、この素晴らしいヒントを忘れないでください。
With CSS you can do something like… .hamburger-panel .panel-body-contents { display: flex; /* Setup a flex layout so you can reorder things */ flex-direction: column; .menu-container-footer-links { order: -1; /* moves footer links to top */ .keyboard-shortcuts-link { display: none !important; /* Hide keyboard shortcut link */ } } } You might need to adjust some other things (borders, spacing), but I think this would get you 90% of the way there.
そして、私の見解は次のとおりです。
.sidebar-section-content {
display: flex;
flex-direction: column;
.sidebar-more-section-links-details {
order: +1;
}
}
.sidebar-section[data-section-name="tags"] {
display: none
}
.sidebar-section[data-section-name="categories"] {
display: flex;
flex-direction: column;
order: +1;
}
.sidebar-custom-sections {
display: flex;
flex-direction: column;
order: +1;
}