Is it possible to change the link assigned to the Global/Space Logo ? Right now it goes back to the default space within Confluence but I want to make it go to an outside page.
I encountered the same problem and fixed it by including some Javascript. Go to the Confluence Administration pages -> Custom HTML and add the following snippet to the "At the end of BODY" section:
<script type="text/javascript"> AJS.$('div#top_logo_wrapper > a').first().attr("href", "/confluence/homepage.action"); </script>
This works in an installation with the RefinedWiki theme.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This will require a modification to the source files (Confluence uses Velocity). One place that I can think of is inside the <confluence_installation>/confluence/template/includes/macros.vm.
Replace the line
<a href="$req.contextPath/display/$spaceKey">
with what you need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.