Removing Footer Elements from SharePoint List Items Display
To remove the footer elements (like Created By, Modified By, …) from list elements, you need to create new Custom List From using SharePoint Designer, and modify the output generated.
Here are the steps to do that, and thanks to Bergen for his blog Creating Custom Forms for SharePoint.
Step 1: Create a new Custom List Form, and edit it to remove the footer:
- Open the site in SharePoint Designer.
- Dive in to the tree to reach out your list folder. Usually under the Site Address/Lists
- Make a copy of DispForm.aspx Name it something like: MyDispForm.aspx
- Open the new MyDispForm.aspx
- Select the ListFormWebPart, and delete it.
- Click Insert -> SharePoint Controls -> Custom List Form…
- Choose you list or document library from the drop down list.
- Choose Type of form to create: Display item form (used to view list items)
- A new Data Form Web Part will be created.
Delete the CreatedModifiedInfo control, using either:
- Design mode: click the control that shows the Created By and Modified By text, and delete.
- Code Mode: create the following tag:
<SharePoint:CreatedModifiedInfo ControlMode="Display" runat="server"/>
- Save the page.
Step 2: Introduce the new page to your List, and make it the default to display items:
- Right-click you list folder from the left navigation Folder List. Choose Properties.
- Under Supporting Files tab, under "Content type specific forms", Choose item or whatever you basic type is.
- Change the page for "Display item form", and choose the new created page MyDispForm.aspx
- Click Ok.
- Browse to you list and view an item, to see that the footer is no more displayed.