cancel
Showing results for 
Search instead for 
Did you mean: 

remove welcome dashlet widget in alfresco share 4

g_rathod
Star Contributor
Star Contributor
Hi Friends,

Is there any configuration through we can remove or disable welcome widget shown while login into alfresco share 4 ( new user) ?

Welcome message like :
http://awesomescreenshot.com/09e2fms25
7 REPLIES 7

loftux
Star Contributor
Star Contributor
Yes, modify presets.xml.
Remove this part
         <component>
            <scope>page</scope>
            <region-id>full-width-dashlet</region-id>
            <source-id>user/${userid}/dashboard</source-id>
            <url>/components/dashlets/dynamic-welcome</url>
            <properties>
               <dashboardType>user</dashboardType>
            </properties>
         </component>

qoitecover
Champ in-the-making
Champ in-the-making
Hi,Loftux!
Version:Community 5.0d
I just remove the part you suggested .And nothing happened…What to do?

dranakan
Champ on-the-rise
Champ on-the-rise
Hi,

It's working for new users.
Can we remove this panel for a user already connect in Alfresco ?
(disable this panel for everybody).

dranakan
Champ on-the-rise
Champ on-the-rise
Hi,

It's working for new users.
Can we remove this panel for a user already connect in Alfresco ?
(disable this panel for everybody).

Ok, the panel can be never been shown like this :


mkdir -p /opt/Alfresco/tomcat/shared/classes/alfresco/web-extension/site-webscripts/org/alfresco/components/dashlets
cp /opt/Alfresco/tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/dashlets/dynamic-welcome.get.html.ftl /opt/Alfresco/tomcat/shared/classes/alfresco/web-extension/site-webscripts/org/alfresco/components/dashlets
Edit and add condition to never execute :  /opt/Alfresco/tomcat/shared/classes/alfresco/web-extension/site-webscripts/org/alfresco/components/dashlets/dynamic-welcome.get.html.ftl

<#if false>

</#if>

qoitecover
Champ in-the-making
Champ in-the-making
Hi,dranakan!
Version:Alfresco Community 5.0d .I just tried your solutions that does not work indeed.
Maybe I did not get your point at all.I have two questions to you:
    1.Which Path Shall I Edit the file "dynamic-welcome.get.html.ftl":
        A.opt/....shared/.../dashlets
        B.opt/...webapps/share/.../dashlets
      A or B or both?
    2.About the modify of the file:
        A.Shall I just put a "false" to the first <#if ShowDashlet> to be like <#if false ShowDashlet>?
        B.Shall I write a new <#if false></#if>?
        A or B ?
        if it's B,Please forgive me,I am a fresh newer.Then what to write to hide the assistance panel?

Works also for v5.2.

jane
Champ in-the-making
Champ in-the-making
Thanks that works