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

Removing header display in end of survey block

  • October 19, 2023
  • 4 replies
  • 674 views

Forum|alt.badge.img+1

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?

 

Best answer by Nam Nguyen

 

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

4 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 6084 replies
  • October 19, 2023

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


Forum|alt.badge.img+1
  • Author
  • 2 replies
  • October 22, 2023

 

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


Nam Nguyen
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+29
  • QPN Level 8 ●●●●●●●●
  • 1096 replies
  • Answer
  • October 23, 2023

 

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


Forum|alt.badge.img+1
  • Author
  • 2 replies
  • October 23, 2023

Great, thank you so much!