Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Allow Content Editor Web Part

Using SharePoint 2007, how could I allow the adding of CEWP's to the selection menu of an "Add a Web Part" dialog while in Edit Page mode? As of the moment, I can only add Announcements, Calendar, Links, Shared Documents, Tasks but I do not have the ability to add a CEWP. I have full access to the site.

like image 239
Johnathan1 Avatar asked Feb 22 '12 18:02

Johnathan1


2 Answers

At Site Settings > Site Features > Site Collection Features, you will want to have the Office SharePoint Server Publishing Infrastructure set to active.

Then, on the site, go to Site Settings > Site Features, and activate the Office SharePoint Server Publishing feature. You should then be able to add the content editor web part to the site.

like image 174
KodeKreachor Avatar answered Oct 17 '22 04:10

KodeKreachor


Quite often I see SharePoint 2010 websites without the Content Editor webpart (MSContentEditor.dwp)

To enable this web part you need to activate the BasicWebParts feature on that site. I did not find an option to do this by the web site admin; you can enable the feature however by using SharePoint powershell.

Execute the following statement in the SharePoint Powershell and the Content editor web part will be added to your site

Enable-SPFeature 00bfea71-1c5e-4a24-b310-ba51c3eb7a57 -Url [SharepointSiteUrl]

To get the SharePoint site url just run

Get-SPSite

Gertjanvanmontfooort blog

like image 38
Plexus81 Avatar answered Oct 17 '22 04:10

Plexus81