Is it possible to add a page to the list of spaces on the dashboard?
Thank you and regards,
Kay
Hello Kay,
It is quite easy to add a link just above of below the list of spaces:
- In the Confluence administration, go to Layouts and edit the Global Layout.
- Look for the following lines:
<div class="dashboard-section">
$helper.renderConfluenceMacro("{spaces}")
</div>
- You can add your link just above or below that piece of code:
$helper.renderConfluenceMacro("[This is a link above the space-list|SpaceKey:This is a test]")
<div class="dashboard-section">
$helper.renderConfluenceMacro("{spaces}")
</div>
$helper.renderConfluenceMacro("[This is a link below the space-list|SpaceKey:This is a test]")
- Alternatively, instead of rendering a wiki link, you can of course use a HTML link:
<a href="http://www.google.com">Click here to visit Google</a>
I hope this is what you were looking for
Cheers,
Thomas
Thank you, Thomas.
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.