Pergunta

I added Content Editor Webpart in my Sharepoint page. If there is no content provided in CEWP then 'Edit this page to modify your web part content' default text is displaying in the page. How do i remove this default text.

Note: I added this CEWP in page layout, using this page layout I have created several pages. So now I have to modify in page layout.

Foi útil?

Solução 2

I just added   (space) in below section of Content Editor Webpart. thats it. it worked for me

<Content xmlns="http://schemas.microsoft.com/WebPart/v2/ContentEditor"><![CDATA[&nbsp;]]></Content>

Outras dicas

Using Jquery I give one solution for you,

Load Jquery latest URL to Your site and Use Following Code from Remove 'Edit this page to modify your web part content' default text is displaying in the page in CEWP.

$("[id^='WebPartWPQ']").empty();

Hope this is helpful for you.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top