Confluence doesn’t offer a built-in setting to disable pop-ups, you can hide them using a simple styling I've made.
Disable annoying alerts in Confluence by advxrsary
Details
Authoradvxrsary
LicenseNo License
Categoryatlassian.net -> userstyles
Created
Updated
Size326 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Disable annoying alerts in Confluence
@version 20241011.16.29
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://[your-domain].atlassian.net") {
[data-test-id="flag-visibility-wrapper"],
div[role="alert"],
div[aria-live="polite"] {
display: none !important;
}
}