How can I remove the alfresco name in login page?

cancel
Showing results for 
Search instead for 
Did you mean: 
savita
Member II

How can I remove the alfresco name in login page?

Jump to solution

I am using the Alfresco 5.2 community  and I want to change  background color, icon and alfesco's name company.  

1 Solution

Accepted Solutions
cesarista
Customer

Re: How can I remove the alfresco name in login page?

Jump to solution

Basically you need to override app.name and app.community properties (for changing these literals according your organization) . If you want to delete them, you will need to change some css files in the default themes.

Regards.

--C.

View solution in original post

6 Replies
kalpesh_c2
Senior Member

Re: How can I remove the alfresco name in login page?

Jump to solution

Hi,

This approach is good. It might help you.

Customizing Alfresco for demo purposes | Programming and So 

Thanks,

Kalpesh

ContCentric

calvo
Senior Member
cesarista
Customer

Re: How can I remove the alfresco name in login page?

Jump to solution

Basically you need to override app.name and app.community properties (for changing these literals according your organization) . If you want to delete them, you will need to change some css files in the default themes.

Regards.

--C.

n_a_u_d
Member II

Re: How can I remove the alfresco name in login page?

Jump to solution

where can i find these properties? in which file?

best regards,

calvo
Senior Member

Re: How can I remove the alfresco name in login page?

Jump to solution

Hi, 

You have to add several lines to the file: 

alfresco-global.properties (tomcat/shared/classes/) 

For example:

app.name=xxxxxxxxxxx
app.community.name=yyyyyyyy
app.name.community=xxxxxxxxxxx

Regards,

clv

cesarista
Customer

Re: How can I remove the alfresco name in login page?

Jump to solution

Mmmm, not really. As we said, you need to override app.name and app.community properties that may be found in:

/opt/alfresco52g/tomcat/webapps/share/WEB-INF/classes/alfresco/messages/slingshot*.properties

But look for a way of extending this under /shared/classes/alfresco/web-extension/, and not editing directly in these properties files. You need a small customization for Alfresco Share.

Overriding the default message bundle | Alfresco Documentation 

 

Regards.

--C.