cancel
Showing results for 
Search instead for 
Did you mean: 

Need to customize the 'My Alfresco' page

theorbix
Confirmed Champ
Confirmed Champ
Hello, I need to customize the behaviour of the My Alfresco page in a way that the Navigator pane will always display the list of spaces under "Company Home".

I have looked around the .jsp pages, but I haven't found a way to implement this enhancement.

Does this change require some changes in a Java class? Can someone provide a hint at what I should modify?

Thanks in advance…
11 REPLIES 11

tejaswini
Champ in-the-making
Champ in-the-making
good morning.,
   i want to customise alfresco in such a way that i want only common tasks and one or two more tasks given by me appear on the dashboard or to the specific page…will anybody let me know how i can go for it.i will be very thankful if u give stepwise procedure.
   thanks in advance

rafaelscg
Champ on-the-rise
Champ on-the-rise
Yu can use jquery for hide the tabs what you dont wanna show for users. Something like this at your "navigator.jsp":


$(document).ready(function(){
   $("#navigator div a").each(function(){
      if($(this).html() == "My Alfresco"|| $(this).html() == "Guest Home"){
         $(this).parent().css("display","none");
      }
   })
})


Hope this help!