How to disable/hide Confluence inline comments in a page

お困りですか?

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

コミュニティに質問

プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。

このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。

*Fisheye および Crucible は除く

要約

The inline comments on pages and blog posts are managed by an out-of-the-box plugin embedded in Confluence DC.

This plugin cannot be uninstalled or disable as it may impact confluence in other ways, so, the only option to hide Confluence in-line comments HTML customizations. 

環境

Confluence 8.5

ソリューション

Be mindful that customisations are not part of our support scope as per Atlassian Support Offerings. Any effort provided to support issues related to customisation will be on a best-effort basis by the support engineer.

Option 1) Hide only the Inline Comment Button

  1. Browse to General Configuration > Custom HTML
  2. Add the following HTML code in the "At end of the HEAD" section.

    <style>button[data-key*=inline-comment] { display:none !important;}</style>
  3. Restart your browser and clearing your Browser's cache might be needed for the change to be in effect. 

Option 2) Hide the Inline Dialog Content and Inline Dialog Arrow

  1. Browse to General Configuration > Global Stylesheet
  2. Add the following CSS code:

    .aui-inline-dialog-contents{
    display: none;
    visibility: hidden;
    }
    .aui-inline-dialog-arrow {
    display: none;
    visibility: hidden;
    }
  3. Restart your browser and clearing your Browser's cache might be needed for the change to be in effect. 

 Take into consideration that this second approach could also hide other Inline dialogs that are not related to the inline-comment feature.



最終更新日 2024 年 5 月 23 日

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

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