Change "I Like It" tag on Social Ribbon
-
Monday, May 07, 2012 11:36 AM
Hi everybody
I have a little problem, that i wanna change the tag on the social ribbon.
Default it writes the tag "I Like It" and i want it to be for example "abc" or "xyz" or any other custom word.
I have tried to edit the spscore.resx but unfortunately i could not manage it ...
Your help needed.
Thanks in advance...
Süleyman PETEK www.suleymanpetek.com
All Replies
-
Monday, May 07, 2012 1:29 PM
Hey,
You can do it easily using jquery,
Add following code into the <head> section of your masterpage using designer
$(document).ready(function() { $("span:contains('I LIke It')").text("Your Word"); });Let me know if you have any queries :)
Mark as answer if it solves your problem :)
"The Only Way To Get Smarter Is By Playing A Smarter Opponent"
- Marked As Answer by Jinchun ChenMicrosoft Employee, Moderator Saturday, May 26, 2012 7:44 AM
-
Monday, May 07, 2012 2:24 PM
Ravi
First of all thank you for your interest,
This may solve my problem however this way is a bit dangerous that it replaces all the spans in the DOM...
I keep searching for alternative solutions...
Süleyman PETEK www.suleymanpetek.com
-
Saturday, May 26, 2012 7:46 AMModerator
Hi Süleyman,
Ravi is right. Using JavaScript is the better way. The script Ravi posted will only change the SPAN which contains "I Like it". It won't replace all the SPANs in the DOM.
For your first attemp - "Modifying resource file", it is impossible. The text "I like it" is harded code in resource in assembly "Microsoft.SharePoint.Portal.Intl".
Thanks,
Jinchun ChenJinchun Chen
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact tnmff AT microsoft.com(Please replace AT with @)

