<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Remove People and Sites Links in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214854#M167984</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Folks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply.&amp;nbsp; Could you tell me as well, where to change the background color on the title bar of share&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gerald&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Dec 2009 15:43:48 GMT</pubDate>
    <dc:creator>gmurphy</dc:creator>
    <dc:date>2009-12-10T15:43:48Z</dc:date>
    <item>
      <title>Remove People and Sites Links</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214851#M167981</link>
      <description>Hi,Can anyone tell me where to look to remove the My Profile, Sites and People links at the top of each Share page.Also is there a way I can remove the Invite, Leave Edit site detail Buttons as wellThanksGerald</description>
      <pubDate>Wed, 09 Dec 2009 15:49:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214851#M167981</guid>
      <dc:creator>gmurphy</dc:creator>
      <dc:date>2009-12-09T15:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remove People and Sites Links</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214852#M167982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The header menu is rendered by the file &lt;/SPAN&gt;&lt;STRONG&gt;header.get.html.ftl&lt;/STRONG&gt;&lt;SPAN&gt; which is found in &lt;/SPAN&gt;&lt;STRONG&gt;tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/header/&lt;/STRONG&gt;&lt;SPAN&gt;. You could override it by placing a copy of the file in &lt;/SPAN&gt;&lt;STRONG&gt;tomcat/shared/classes/alfresco/web-extension/site-webscripts/org/alfresco/components/header/&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The site title menu is rendered by the file &lt;/SPAN&gt;&lt;STRONG&gt;collaboration-title.get.html.ftl&lt;/STRONG&gt;&lt;SPAN&gt; in &lt;/SPAN&gt;&lt;STRONG&gt;tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/title&lt;/STRONG&gt;&lt;SPAN&gt;. The same principle could be used for overriding this file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, be aware that any html object that have a specified id might be referred to in some javascript file and if that object doesn't exist there will be a javascript error which may mess up the rendition of the page. For instance, this is the code part that renders the Sites menu:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;span id="${args.htmlid}-sites-linkMenuButton" class="link-menu-button"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;span class="menu-item-icon sites link-menu-button-link"&amp;gt;&amp;lt;a href="${url.context}/page/site-finder"&amp;gt;${msg("link.sites")}&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input id="${args.htmlid}-sites" type="button"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/span&amp;gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;If you simply remove that part in the file there will be no object with the id "${args.htmlid}-sites-linkMenuButton" and if any javascript code (like the code creating the dropdown menu) tries to manipulate that object there will be an error, which may prevent other js code snippets from being executed.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 18:04:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214852#M167982</guid>
      <dc:creator>gronfelt</dc:creator>
      <dc:date>2009-12-09T18:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Remove People and Sites Links</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214853#M167983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah, that part of the code could be improved; but it's often difficult to cover all the ramifications when the mark-up is changed from what the code is expecting. For example, removing the Sites menu also means the "Favourite Site" function would no longer function - and that's just off the top of my head.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There's no easy solution right now, other than just hiding the UI part of the function with CSS (display: none).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 22:39:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214853#M167983</guid>
      <dc:creator>mikeh</dc:creator>
      <dc:date>2009-12-09T22:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Remove People and Sites Links</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214854#M167984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Folks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply.&amp;nbsp; Could you tell me as well, where to change the background color on the title bar of share&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gerald&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 15:43:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214854#M167984</guid>
      <dc:creator>gmurphy</dc:creator>
      <dc:date>2009-12-10T15:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remove People and Sites Links</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214855#M167985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Should be in presentation.css in the themes folder.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By *far* the easiest way to track down things like that is to point Firebug at the UI element in question and see where the style is coming from.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 16:28:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214855#M167985</guid>
      <dc:creator>mikeh</dc:creator>
      <dc:date>2009-12-10T16:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Remove People and Sites Links</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214856#M167986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Mike for the quick reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gerald&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 16:41:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-people-and-sites-links/m-p/214856#M167986</guid>
      <dc:creator>gmurphy</dc:creator>
      <dc:date>2009-12-10T16:41:13Z</dc:date>
    </item>
  </channel>
</rss>

