Removing header display in end of survey block | XM Community
Skip to main content

Hi,

I’m looking to remove the header that I input into the Look & Feel section from displaying in End of Survey section. I was able to remove the header from other blocks by inputting code into the Rich Content Editor, but I’m not able to access the Rich Content Editor in the End of Survey Block.

 

I tried putting the code into the saved message in My Library but the header still remains. Any help with this?

 

You need to edit your message in source mode and put the JavaScript in a <script> tag.


 

Thank you for the help! How do I access the source mode at the end of survey block?


 

Thank you for the help! How do I access the source mode at the end of survey block?

@ronakdsouza11 Edit message → Click the <> icon and paste this code in

<script>
var header = document.getElementById("Header");
header.style.display = "none";
</script>

Hope this helps


Great, thank you so much!


Leave a Reply