How to Turn Off Confluence Logo Button Redirection to the Homepage

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Use Case

In Confluence, if you click the confluence button it will redirect you to Confluence homepage. You might want to disable this functionality.

(Auto-migrated image: description temporarily unavailable)

Resolution

You can make the logo non-active with the following steps by putting some Javascript in the Custom HTML section of Confluence Admin to Unlink it on page load.

1 2 3 4 5 6 7 <script type="text/javascript"> AJS.toInit(function(){ if(AJS.Meta.get('is-confluence-admin') != "true") { AJS.$('#logo a').attr('href', '#'); } }); </script>

Updated on April 8, 2025

Still need help?

The Atlassian Community is here for you.