cancel
Showing results for 
Search instead for 
Did you mean: 

Change/Modify Footer Alfresco Comunity

juliogg
Champ in-the-making
Champ in-the-making
Hello,
I've found several topics related with changing/deleting of the footer but all of them are refered to Alfresco BEFORE changing to GPL
Can someone clarify if NOW changing the footer is allowed? and also What are the technical steps that has to be taken for doing so?.
Thanks in advance.
Julio
1 ACCEPTED ANSWER

muralidharand
Star Contributor
Star Contributor
You need to change the footer.css which is present in,
 C:\Alfresco50d\tomcat\webapps\share\components\footer\footer.css 


/* Footer Component */
.footer
{
   background-color: #fafafa;
   border-top: 1px solid #ccc;
   text-align: center;
   padding: 0;
   display:none!important;
}


It is working for me in ACE 5.0.d on windows 7 machine, refer attached.

View answer in original post

30 REPLIES 30

garryarif
Champ in-the-making
Champ in-the-making
Change display: none on footer.css, that's in share/components/footer/

on line 57:

.footer-com .copyright span {
   display: none;
}


To change the image "Alfresco Community", go to share/components/images/alfresco-share-logo.png
Simply swap the existing .png file with your own new .png.

Hope that helps.

jmonferrer
Champ in-the-making
Champ in-the-making
Change display: none on footer.css, that's in share/components/footer/

on line 57:

.footer-com .copyright span {
   display: none;
}


To change the image "Alfresco Community", go to share/components/images/alfresco-share-logo.png
Simply swap the existing .png file with your own new .png.

Hope that helps.

works perfect !thanks ( 3.4.d )

perfectto
Champ in-the-making
Champ in-the-making
Other way, if you wanna just remove the image, without replace for other one, just remove the image alfresco-share-logo.png at share/components/images/alfresco-share-logo.png

Hope it helps

sjoerdjump
Champ in-the-making
Champ in-the-making
Other way, if you wanna just remove the image, without replace for other one, just remove the image alfresco-share-logo.png at share/components/images/alfresco-share-logo.png

Hope it helps

Or if you dont want your users to see a red cross, create a transparant image the same size as the original and swap those 🙂

deeps
Champ in-the-making
Champ in-the-making
I want to remove below line from alfresco login page.

© 2005-2015 Alfresco Software Inc. All rights reserved.

can anyone help me??

how can i do this??

deeps
Champ in-the-making
Champ in-the-making
Hi All

i want to hide all sub-menu except Folder menu from Create menu action.

can any one help me how can i remove all sub menus or sub cations.

in below attachment the yellow marked menus i want to hide.

version: Alfresco 5.0 d

muralidharand
Star Contributor
Star Contributor
Deeps,
You can find out the configuration values in
 share-documentlibrary-config.xml 
file.


<create-content>
         <content id="plain-text" label="create-content.text" type="pagelink" index="10" icon="text">
            <param name="page">create-content?destination={nodeRef}&amp;itemId=cm:content&amp;mimeType=text/plain</param>
         </content>
         <content id="html" label="create-content.html" type="pagelink" index="20">
            <param name="page">create-content?destination={nodeRef}&amp;itemId=cm:content&amp;mimeType=text/html</param>
         </content>
         <content id="xml" label="create-content.xml" type="pagelink" index="30">
            <param name="page">create-content?destination={nodeRef}&amp;itemId=cm:content&amp;mimeType=text/xml</param>
         </content>
         <content id="folder" label="create-content.folder" icon="folder" index="5" type="javascript">
            <param name="function">onNewFolder</param>
         </content>
      </create-content>

      <create-content-by-template>true</create-content-by-template>


In order to hide this, you need to remove or comment the
 <create-content> … 
sections according to your requirement.
If you make
 <create-content-by-template>true</create-content-by-template> 
to
 <create-content-by-template>false</create-content-by-template>
, then
Share won't display, Create document from template, create folder from template menu options.

You need to use share-custom-config.xml to modify this.

Please let me know, if you need any help on this.

Hi,
I would like to remove the unsecured connection warning in my web browser, but when I add :
span.footer
{
display:none!important;
}

or when i modify this part (according to this post : https://forums.alfresco.com/forum/installation-upgrades-configuration-integration/installation-upgra...) :
.footer
{
   font-family: Arial,Helvetica;
   font-size: 10px;
   display: none;
}

in /opt/alfresco/tomcat/webapps/alfresco/css/main.css, after an Alfresco reboot, there isn't any improvement, I still have my unsecured sign in FF.
I'm currently using ACE 5.0.d.

Do you have any idea to fix this problem ?

Thanks.

Regards.

deeps
Champ in-the-making
Champ in-the-making
Hi murli,

Thanks for the reply.

your reply was really usefull for me.


Thanks again   Smiley Happy


benjamindupont
Champ in-the-making
Champ in-the-making
Hi, Anybody has an idea to fix my problem ?