snippet not working

Hi all,

I was recently hired by a nonprofit and am currently trying to add a third party sign up form to our Wix site. The form is hosted by Bloomerang, our donor management software. I’ve tried a bunch of times to embed it on the site. I also contacted customer support and they really had nothing to offer except asking here. I’m not code savvy at all, and I’m not sure why it doesn’t work. It is possible that the code was designed to work on a wordpress site and maybe this is the issue? Snippet below. Any help would be so appreciated!

You can’t embed HTML in a Wix Code page. You might want to consider using an HtmlComponent . For more information, see the article Working with the HTML Component in Wix Code .

A more secure way to handle web service requests is by using backend (server-side) code. Using backend code you can secure your passwords, API keys, and other secret information. The article Accessing 3rd Party Services explains how this is done. I recommend checking with the service provider to see if they provide a REST interface.

I just had this same issue when trying to add a Bloomerang script to a Wix page using the Embed HTML Code element in the Wix page editor.

Embed HTML Code elements use an iframe to display the content and I found if you simply add a script to this element in the editor, Wix will load the script in the of the HTML page it creates to display in the iframe. This results in the form code loading in the head of the iframe src page instead of the body.

To fix this, simply wrap the Bloomerang script in a div in the Embed HTML Code element in the Wix page editor:

This should force the script to display in the body. Hope this helps.