We are running MOSS 2007 and have several wiki sites. I am trying to remove the "Recent Changes" area that is directly under the Quick Launch bar for wiki sites. I followed the directions from this discussion http://social.technet.microsoft.com/Forums/en/sharepointsocialcomputing/thread/fc686bff-74be-4fe2-bb3a-8f22d560381d,
and it worked for some sites but not all.
What I don't understand is that I made a change to the "wkpstd.aspx" file under Program Files\Common
Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\DocumentTemplates.
Changed from this:
<asp:Content ContentPlaceHolderId="PlaceHolderLeftActions" runat="server">
<SharePoint:RecentChangesMenu
runat="server" id="RecentChanges"/>
</asp:Content>
To:
<asp:Content
ContentPlaceHolderId="PlaceHolderLeftActions" runat="server">
<SharePoint:RecentChangesMenu
runat="server" id="RecentChanges" visible="false"/>
</asp:Content>
After I made this change, some wikis still have the "recent changes" under the quick launch bar. Is there another location that I missed?