I want to Remove like/favourite from document details

cancel
Showing results for 
Search instead for 
Did you mean: 
piyush48
Established Member

I want to Remove like/favourite from document details

Jump to solution

Hi All,

I Want to remove like/favourite from the Document Details section of document. I am able to remove it from Document Library. Could someone provide me the path of CSS in which changes are to be done as told to me by @cesarista   in the below section.

What exactly changes i need to do to hide like/favourite from document details.

 https://hub.alfresco.com/t5/alfresco-content-services-forum/how-to-remove-favorite-like-comment-shar... 

 

 

Thanks,

Piyush

1 Solution

Accepted Solutions
sanjaybandhniya
Intermediate

Re: I want to Remove like/favourite from document details

Jump to solution

Hi,

You need to override node-header.get.js file to remove like/favourite from document-details.

View solution in original post

4 Replies
sanjaybandhniya
Intermediate

Re: I want to Remove like/favourite from document details

Jump to solution

Hi,

You need to override node-header.get.js file to remove like/favourite from document-details.

piyush48
Established Member

Re: I want to Remove like/favourite from document details

Jump to solution

Thanks @sanjaybandhniya ,

It works perfectly for me after i made changes in node-header.get.js.

Thanks once again,

 

 

Thanks and Regards,

Piyush

sanjaybandhniya
Intermediate

Re: I want to Remove like/favourite from document details

Jump to solution

Hi,

Did you remove  like/favourite from aikau search page also?

piyush48
Established Member

Re: I want to Remove like/favourite from document details

Jump to solution
.item-social a.quickshare-action {
   visibility: hidden;
}

I have used the above code for disabling the Like and Favourite at AIKAU page. Is it ok??