Adding Google Group iframe

I’m trying to add a google group to my page using the “HTML iframe” element.

When I either add the google group URL or the embed code supplied by Google Groups, I get no iframe load and the console throws an error:

Invalid 'X-Frame-Options' header encountered when loading "https://....etc"

and

Unsafe JavaScript attempt to initiate navigation for frame with URL "https://.....etc"

Here’s the embed code:

 <iframe id="forum_embed"
  src="javascript:void(0)"
  scrolling="no"
  frameborder="0"
  width="900"
  height="700">
</iframe>
<script type="text/javascript">
  document.getElementById('forum_embed').src =
     'https://groups.google.com/forum/embed/?place=forum/simons-web-test-group'
     + '&showsearch=true&showpopout=true&showtabs=false'
     + '&parenturl=' + encodeURIComponent(window.location.href);
</script> 

Is there something I’m missing?

Any help would be greatly appreciated.

Same issue…anyone?

I tried everything I coud think of and gave up on this. I just had to link out to a google site page, which is the only way I could get a group iframe embed to work. This is an issue not specific to Wix as far as I can see.

I even tried contacting Wix about it and got nowhere with them, they just keep saying they don’t support outside code. I’ve used that Google drop-in code multiple times before on other sites with no issues, the only thing is the Corvid sandboxing and they won’t provide documentation on how to fix that…so without support from Wix it’s a dead end as far as I can figure.