Sharepoint - How to remove the title link url?

If you want the title in a view to be without the link, modify your view and unselect "Title (linked to item with edit menu)" and select "Title" and move it up to its correct location.

This will render the title as text only.

EDIT: Sorry, didn't see your yellow marking. You need to edit the webpart as Steve said, but instead of clearing it put a blank space in the "Title URL" property.

EDIT: Didn't test that out before posting.... If you put a pound "#" in the Title URL you get a link to current page. Not solving the problem completly, but better than nothing.


On the right side of the screen, the Web Part Properties tool pane will appear. Expand the section called Advanced.

Remove Titile URL content and just put #

Click on Apply .

This worked for me.


My Solution:

Write "/none" or something like that in the Title Link Field...

Now, with a short jQuery code you can remove all your Title Links which are set to "/none".

jQuery code:

$(document).ready(function(){
$("a[href='/none']").removeAttr("href");
});

I wrote this also in my Blog

I used my solution because if you use the "#" character, there is a link linked to current page - not very nice at all.

Hope this helps

Tags:

List View