Making 'about-share' into a return to homepage link
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2011 01:10 AM
When you click the company logo in top left of share it pops open the about-share box. Is there a way to disable this functionality and make the company logo link to another page.
Labels:
- Labels:
-
Archive
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2011 03:43 AM
You could change the line 26 of the file:
Cheers,
Jordi.
<ALF_HOME>/tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/header/header.get.html.ftl
Specifically:<a href="#" onclick="${jsid}.showAboutShare(); return false;"><img src="${url.context}/res/themes/${theme}/images/${logo}" alt="Alfresco Share" /></a>
But (if I'm not wrong) this is not a good practice, the correct thing to do would be to override it. Take a look at this blog post, it may help.Cheers,
Jordi.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2011 08:13 PM
<a href="#" onclick="${jsid}.showAboutShare(); return false;"><img src="${url.context}/res/themes/${theme}/images/${logo}" alt="Alfresco Share" /></a>
Hey thanks for the reply, I was actually able to solve this by placing my link in the href="#" section and then changing the return false to return true. Now it goes right where I want it!
This is now solved 😃
