How to Hide Confluence Child Pages With jQuery

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

When you create child pages in Confluence, a section is added to the bottom of the parent page listing all of the child pages:


To hide that section, you can use jQuery:

  • Log in to Confluence as an administrator.
  •  Select Browse -> Confluence Admin -> Look and Feel -> Custom HTML.
  •  Insert the following code in the “At end of HEAD” section:

    <script>
    AJS.toInit(function() {
     AJS.$("#children-section").css("display","none");
     });
    </script>
    
  • Save your changes. Your page will now look like the following:

最終更新日: 2016 年 2 月 26 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.