Hiding the social tags
There are lots way to do this and Here i am going to show you few ways out of them
Hiding the social tags for specific site or web:
Following CSS will hide the tags..
1 2 3 4 | .s4-socialdata-notif { display:none; } |
Hiding the social tags for web application:
In the Permissions for User Profile Service Application dialog box on central admin
Do one of the following:
1. To enable the permission, in the Permissions for box, select the Use Social Features check box, and then click OK.
2. To disable the permission, in the Permissions for box, clear the Use Social Features check box, and then click OK.
For detail steps please visit below url
http://technet.microsoft.com/en-us/library/ee721064.aspx
Another way to Hiding the social tags across the farm:
To completely remove from all web applications.. go to Central Admin > System Settings > Farm Management > Manage farm feature
Deactivate the feature “Social Tages and Note Board Ribbon controls” feature.
Thanks!
Avinash
May 21, 2012
В·
Infoyen В·
3 Comments
Tags: SharePoint, social tags, Tips & Tricks В· Posted in: SharePoint 2010, Tips & Tricks
3 Responses
the “li” element has the id either Ribbon.Documents.TagsAndNotes (in documents list)
or Ribbon.Items.TagsAndNotes (in normal lists)
so to hide them all i used :
[id*=TagsAndNotes] {
display: none;
}
Thanks for sharing your idea..
Nice article.
Thanks
Leave a Reply