Pregunta

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.

¿Fue útil?

Solución 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>

Otros consejos

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 bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top