Web Form Builder in WordPress - Page 1

User 430140 Photo


Registered User
43 posts

I just made a new form with Form Builder. I inserted script into my web page (WordPress-support).
I uploaded the exported folder (actually the folder within the exporter folder called "WPMaintenanceForm"
I uploaded the WPMaintenanceForm.php file

As it is not working, I am wondering if I uploaded the folder and php file to the wrong place.
I uploaded to : wp-content/themes/theme-name-child/

I uploaded through my usual Coffeecup FTP. I checked my cPanel and all files are there, but there is nothing on the page. Usually when it is not working I at least get a big gray space!

Suggestions?

http://www.hlnwebdesigns.com/wordpress-support

here is my script code:

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


thank you
User 2623310 Photo


Ambassador
282 posts

Learning1 wrote:
I just made a new form with Form Builder. I inserted script into my web page (WordPress-support).
I uploaded the exported folder (actually the folder within the exporter folder called "WPMaintenanceForm"
I uploaded the WPMaintenanceForm.php file

As it is not working, I am wondering if I uploaded the folder and php file to the wrong place.
I uploaded to : wp-content/themes/theme-name-child/

I uploaded through my usual Coffeecup FTP. I checked my cPanel and all files are there, but there is nothing on the page. Usually when it is not working I at least get a big gray space!

Suggestions?

http://www.hlnwebdesigns.com/wordpress-support

here is my script code:

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


thank you


Hi Learing1,

In fact you did uploaded them wrong. The files should in the root directory. If you wanting to keep them in the location that you have them uploaded too then you need to code the inframe code to this

<script type="text/javascript">document.write(unescape("%3Ciframe id=\"fb_iframe\" src=\"WPMaintenanceForm.php" + window.location.search + "\" width=\"100%\" height=\"1574\"allowtransparency=\"true\" scrolling=\"no\" frameborder=\"0\"%3E&lt;a href=\"wp-content/themes/theme-name-child/WPMaintenanceForm.php\" title=\"WPMaintenanceForm\"&gt;Check out my CoffeeCup Form&lt;/a&gt;%3C/iframe%3E"));</script>
<noscript>
<iframe height="1574" style="border:none; background:transparent; overflow:hidden; width:100%;"
id="fb_iframe" src="wp-content/themes/theme-name-child/WPMaintenanceForm/WPMaintenanceForm.html">
<a href="wp-content/themes/theme-name-child/WPMaintenanceForm.php" title="WPMaintenanceForm">Check out my CoffeeCup Form</a>
</iframe>

Hope this helps you out.:)
User 430140 Photo


Registered User
43 posts

I had them in my root file, but as this website is in an addon site, it did not work. I will change the script as you suggested. Thx so much.
User 2623310 Photo


Ambassador
282 posts

I was going though the script again and I noticed that something was missing.

Please add this </script> after </iframe>
User 187934 Photo


Senior Advisor
20,271 posts

Scott Larson wrote:
I was going though the script again and I noticed that something was missing.

Please add this </script> after </iframe>

Actually....
</noscript>
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 430140 Photo


Registered User
43 posts

No, this did not work. Now, I get a 2nd page header and a "page not found" error where the form should be.

Here is my exact code:

<script type="text/javascript">// < ![CDATA[
document.write(unescape("%3Ciframe id=\"fb_iframe\" src=\"wp-content/themes/Builder-Attent-child/WPMaintenanceForm.php" + window.location.search + "\" width=\"100%\" height=\"1574\"allowtransparency=\"true\" scrolling=\"no\" frameborder=\"0\"%3E&lt;a href=\"wp-content/themes/Builder-Attent-child/WPMaintenanceForm.php\" title=\"WPMaintenanceForm\"&gt;Check out my CoffeeCup Form&lt;/a&gt;%3C/iframe%3E"));
// ]]></script>
<noscript>

<iframe id="fb_iframe" style="border: none; background: transparent; overflow: hidden; width: 100%;" src="wp-content/themes/Builder-Attent-child/WPMaintenanceForm/WPMaintenanceForm.html" width="300" height="1574">
<a href="wp-content/themes/Builder-Attent-child/WPMaintenanceForm.php" title="WPMaintenanceForm">Check out my CoffeeCup Form</a>
</iframe>
</noscript>


Here is full path:
public_html/hlnwebdesigns.com/wp-content/themes/Builder-Attent-child/WPMaintenanceForm.php and
public_html/hlnwebdesigns.com/wp-content/themes/Builder-Attent-child/WPMaintenanceForm/WPMaintenanceForm.html

As this is WordPress, should I put the folder and files into Uploads folder instead of wp-content?

Helen
User 187934 Photo


Senior Advisor
20,271 posts

I don't see any form code on your page.
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 103173 Photo


VP of Software Development
0 posts

Add a / (slash) in front of all file references and see if that helps.
Learn the essentials with these quick tips for Responsive Site Designer, Responsive Email Designer, Foundation Framer, and the new Bootstrap Builder. You'll be making awesome, code-free responsive websites and newsletters like a boss.
User 430140 Photo


Registered User
43 posts

I will try adding the forward slash

Thx
User 430140 Photo


Registered User
43 posts

No, this did not work. It got rid of the "page not found" error, but now, nothing shows up.

I even tried the full path: http://www.hlnwebdesigns.com/wp-content . . . and nothing shows up.


<script type="text/javascript">// < ![CDATA[
document.write(unescape("%3Ciframe id=\"fb_iframe\" src="http://www.hlnwebdesigns.com/wp-content/themes/Builder-Attent-child/WPMaintenanceForm.php" + window.location.search + "\" width=\"100%\" height=\"1574\"allowtransparency=\"true\" scrolling=\"no\" frameborder=\"0\"%3E&lt;a href="http://www.hlnwebdesigns.com/wp-content/themes/Builder-Attent-child/WPMaintenanceForm.php\" title=\"WPMaintenanceForm\"&gt;Check out my CoffeeCup Form&lt;/a&gt;%3C/iframe%3E"));
// ]]></script>
<noscript>

<iframe id="fb_iframe" style="border: none; background: transparent; overflow: hidden; width: 100%;" src="http://www.hlnwebdesigns.com/wp-content/themes/Builder-Attent-child/WPMaintenanceForm/WPMaintenanceForm.html" width="300" height="1574">
<a href="http://www.hlnwebdesigns.com/wp-content/themes/Builder-Attent-child/WPMaintenanceForm.php" title="WPMaintenanceForm">Check out my CoffeeCup Form</a>
</iframe>
</noscript>

h

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.