How to Turn Off Confluence Logo Button Redirection to the Homepage

Still need help?

The Atlassian Community is here for you.

Ask the community

Use Case

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

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.

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


Related Content

 

Last modified on Feb 26, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.