문제

Everytime you open an item you can see navigation links on top of the page that lets you go back to the list.

Is there a way to hide those links? (screenshots below)

screenshot 1

screenshot 2

도움이 되었습니까?

해결책

Ah, from my good old 2003 days (and still works in all versions)

You need JavaScript and CSS skills.

There are many ways to achieve what you want, maybe the easiest is:

  • Browse to a New Form/Edit Form

  • examine using F12 developer tools what JavaScript is required to hide those elements

Note: no need for jQuery, something like:

document.getElementById('[the id you explored]').style.display='none';

should be enough

Tip: do not put the code inside the CEWP but link to an external JS file (not sure if this was possible in 2007) you put somewhere in a library.

One file to rule them all

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top