Set up the form files outside of the...

User 2597851 Photo


Registered User
14 posts

Perhaps you can tell me... if I see the changes I want on pagewash, is it only a matter of time before all these changes are seen world wide?

And, is there anything that I can do that is practical to speed that up?

Thanks for all the help.
User 1948478 Photo


Senior Advisor
1,850 posts

The form shows in 'pagewash' because you have disabled scripts there and the iframe option becomes the fallback.
The form will show if you remove the script in your markup (comment out the script part) and rely only on the iframe instead. Then you may also want to fix the sizing of the form and iframe to avoid the scroll bars.
If I were you, I'd also want to figure out what it is about the location of your uploaded files that makes the script unable to find them... ;)
User 187934 Photo


Senior Advisor
20,271 posts

There's a script conflict on the page. Use the unwrapped iframe code and you'll be fine.:)
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 2597851 Photo


Registered User
14 posts

Thanks for this so far.

"The form will show if you remove the script in your markup (comment out the script part) and rely only on the iframe instead." How to?

"If I were you, I'd also want to figure out what it is about the location of your uploaded files that makes the script unable to find them...;)" If the form shows (after commenting out the script par), than the files are being found, aren't they? I am a little confused by this last.

Eric, what is the "unwrapped frame code"?
User 1948478 Photo


Senior Advisor
1,850 posts

Dan Locke wrote:
Thanks for this so far.

"The form will show if you remove the script in your markup (comment out the script part) and rely only on the iframe instead." How to?

"If I were you, I'd also want to figure out what it is about the location of your uploaded files that makes the script unable to find them...;)" If the form shows (after commenting out the script par), than the files are being found, aren't they? I am a little confused by this last.

Eric, what is the "unwrapped frame code"?

No need to 'comment out', just remove the script part and the <noscript> part as per below.

Replace this:
<div>
<script type="text/javascript">document.write(unescape("%3Ciframe id=\"fb_iframe\" src="http://www.mulhollandsecurity.com/mailchimp/MulhollandCCTV.php" + window.location.search + "\" width=\"502\" height=\"711\"allowtransparency=\"true\" scrolling=\"no\" frameborder=\"0\"%3E&lt;a href="http://www.mulhollandsecurity.com/mailchimp/MulhollandCCTV.php" title=\"MulhollandCCTV\"&gt;Check out my CoffeeCup Form&lt;/a&gt;%3C/iframe%3E"));</script>
<noscript>
<iframe style="border:none; background:transparent; overflow:hidden;" id="fb_iframe"
src="http://www.mulhollandsecurity.com/mailchimp/MulhollandCCTV/MulhollandCCTV.html"
height="711"
width="502">
</iframe>
</noscript></div>

with this:
<div>
<iframe style="border:none; background:transparent; overflow:hidden;" id="fb_iframe"
src="http://www.mulhollandsecurity.com/mailchimp/MulhollandCCTV/MulhollandCCTV.html"
height="711"
width="502">
</iframe>
</div>

The script and the iframe are two completely separate entities. The iframe is only activated if scripts are disabled on the page. You can therefore remove the script (and the <noscript> wrapper) and use only the iframe to display the form.
User 2597851 Photo


Registered User
14 posts

OK, that is totally working now. Thank you all for sticking with me on this!

Tell me if I should start another thread for this. For the Questions and Comments, the text field in mailchimp only allows 255 characters. I am not able to associate wfb's "text area" with that it seems. And, correct me if I am wrong, but I don't think that I can change that setting in mailchimp to allow more than 255.

But can I at least create a "taller" more welcoming field to input information into? I have located the css file that is in use here, but, experimenting around with firebug, I have not yet figured how to adjust the height of that single field.


Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.