Change “Add New Item” Link Text to something more descriptive!

Requirement:
The end user’s requirement is to change the “Add New Item” link text to “Add New Risk Metrics” so that it will be more meaningful on the Risk metrics list.

sharepoint change add new item text

Solution: 

In Content Editor Web Part, Place JavaScript that manipulates Add New Item text. In Detail:

1. Go to the target page >> Site actions>> Edit Page

2. Insert a CEWP just below the list view web part.

3. Place the cursor in CEWP, Click on “Edit HTML Source” link from HTML Ribbon Item’s drop down menu.

sharepoint 2010 change add new item text

4. In Content Editor web part enter the script:

<script type="text/javascript">
  document.getElementById("idHomePageNewItem").innerHTML="Add New Risk Metrics"
</script> 

sharepoint customize add new item link
5. Save the page! see the result in action.
sharepoint change add new item link
Use IE Developer Toolbox or Firefox Firebug to get the ID of similar links in other lists and libraries. E.g. For document library it is: “idHomePageNewDocument”

Tail: Remove add new item link SharePoint 2010:
Edit the page and change the List view web part’s Toolbar Type to “No Toolbar”. If you see add new item link missing in SharePoint 2010, change the list view web part’s toolbar type to something other than “No Toolbar”.

Change new item text in SharePoint 2016:

<script type="text/javascript">
window.onload=function(){
 document.getElementById("idHomePageNewItem").innerHTML="Create New Change Request";
}
</script>

Salaudeen Rajack

Salaudeen Rajack - Information Technology Expert with Two-decades of hands-on experience, specializing in SharePoint, PowerShell, Microsoft 365, and related products. He has held various positions including SharePoint Architect, Administrator, Developer and consultant, has helped many organizations to implement and optimize SharePoint solutions. Known for his deep technical expertise, He's passionate about sharing the knowledge and insights to help others, through the real-world articles!

11 thoughts on “Change “Add New Item” Link Text to something more descriptive!

  • If you use “forum0-NewPostLink as the ID if you click on What’s hot, My discussions or Recent the index changes, i.e “forum1-NewPostLink”, “forum2-NewPostLink” and so on. Is there another way to change the text of add new discussion where it doesn’t rely on the exact ID?

    Reply
  • For the discussion board, try this… “forum0-NewPostLink”

    Reply
  • Does anyone know the string or ID for a dicussion board? I cannot find this in my developer tool options.

    idHomePage??????

    Reply
  • does anyone know the string or ID for a discussion board? I cannot find it in my developer tools in IE.

    idHomePage????

    thanks
    – Dave

    Reply
  • Hi I have same issue as Michael Hornef. How do I use this for multiple lists on a single page. Thanks.

    Reply
  • Thanks but works fine when only one list is on the page. How to change it for the second or third list?

    Reply
    • Hi Michael,

      did you solve it?
      I’ve the same issue to manage…

      tks

      Reply
  • Thank you for this. What is the string for FORM Library please?

    Reply
    • For Forms Library: idHomePageNewItem-WPQ2 , Document Library: idHomePageNewDocument

      Reply
  • But when we add content editor web part on the page (In SharePoint 2013) we loose Item and List tool bar.
    Can anyone help me on this.
    I don’t want to loose item and list tool bar and i want to Change “new discussion” in discussion board list.

    Reply
  • Thanks – that fixed my issue perfectly!

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *