Error Message Appears When Viewing a Form
When an error appears on a Form, check the number shown in the bottom-right corner of the screen. This is the error code that indicates the cause.
β
Error Code (1): IP Address Is Blocked
Wait 10β15 minutes, then reload the Form if the page may have been requested too many times in quick succession.
Go to Forms, then click Security to check whether the requesting IP address is listed as blocked.
Delete the blocked IP address entry to unblock the request.
Add the IP address to the Allowed list in the Security tab to prevent future blocking.
β οΈImportant:Permanently blocked IPs must be removed manually before the form can load again.
Error Code (2): Form Cannot Be Found
Check that the Form URL is correct, then retry loading the page.
Open Forms, then check the list to confirm the Form still exists.
Recreate and publish the Form if it has been deleted, then update any pages to use the new Form URL.
π Note: Deleted Forms cannot be restored, and old URLs no longer work.
Error Code (3): Form Is Not Active
Go to Forms, then click Manage Forms.
Open the Form from the list, then set it to Active.
A Form must be active before it can be viewed online.
For Other Error Messages
Refer to the article:: Form Error Messages.
My Form Does Not Seem to Be Working Properly
Open the affected Form Content element, then click Source.
Review the raw HTML and remove any
<form>or</form>tags.
πNote: These tags are often unintentionally copied from websites and can break form functionality.
Card Details Box Is Not Displaying Correctly
Open the Donation element of the Form, then go to the Display tab.
Tick a default payment option to restore the card details fields.
My Purposes Are Not Displayed on the Form
Go to Settings, then click Configuration.
Select Purposes.
Open the relevant Purpose and toggle Include on Preference Update Form to Yes.
Add a description to make the Purpose visible on Preference Update Forms and Form communication options.
My Form Has Scroll Bars
Open the webpage where the Form is embedded in an iframe.
Increase the height value of the iframe to prevent vertical scrolling.
Example:
Change
βheight:1050px;
to something larger such as
βheight:1500px;
πNote: You may need to experiment with different height values.
There Is Too Much White Space at the Bottom of the Form
Edit the height value in your iframe code snippet to reduce unused space.
Example:
Original:
β<iframe style="width: 100%; height:1050px;" ...>
Updated:
β<iframe style="width: 100%; height:850px;" ...>
People Must Scroll Up to See the Submitted Form Message
Copy the script below directly below the iframe line in your webpageβs HTML.
Save and publish your changes.
This script scrolls the page to the top when the form is submitted:
<script type="application/javascript">
var eventMethod = window.addEventListener ? "addEventListener" : "attachEvent";
var eventer = window[eventMethod];
var messageEvent = eventMethod == "attachEvent" ? "onmessage" : "message";
eventer(messageEvent,function(e) {
var key = e.message ? "message" : "data";
var data = e[key];
if (data === 'DonorfyFormCompletedMsg')
{
window.scroll(0,0);
}
},false);
</script>

