Embedding WFB Confirmation into Site...

User 2942998 Photo


Registered User
74 posts

I would like to "Wrap" the form confirmation into a site designer page. I have tried various copy paste the custom WFB HTML into a SD HTML element but no luck.

Any hints on this would be appreciated.
User 187934 Photo


Senior Advisor
20,186 posts

Did you use the Iframe code provided by Form Builder?
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 2942998 Photo


Registered User
74 posts

Solved...
Who knew you had to copy and paste the closing tags? :rolleyes:


User 2942998 Photo


Registered User
74 posts

OK, more or less solved.

I was attempting to use a Redirect to another page with a thank you message and what to expect (i.e. a link in an email) and embed the submitted form information.

As it stands, using the Confirmation message places the info (name, selection, IP, etc.) into the iframe and the page information doesn't change.

Not sure what I'm asking is possible without some magic. If not, the Confirmation is customized enough to serve the purpose.
User 187934 Photo


Senior Advisor
20,186 posts

Form Builder in SD.
https://ericrohloff.com/coffeecup/ccfor … rmbuilder/
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 2942998 Photo


Registered User
74 posts

Thanks Eric.

I have that working using the WFB "Confirmation Message", this shows in the SD page with the iFrame.

I was thinking I may be able to easily embed the form results in a Page Redirect (similar to the redirect php page with the download link) so the form results wouldn't be wrapped with the same page text as the form itself.

I have the results modified similar to your example and at this point I think that it is sufficient so I don't want to monopolize your time, you have already been generous enough.

Overall very happy the way the form is working, kudos to you Eric, couldn't have done without your assistance.
User 187934 Photo


Senior Advisor
20,186 posts

You can embed the form results in the redirect.
Your need to grab the $_SESSION variables.
Like this.
<?php
session_start();
$post = $_SESSION['post'];
echo $post['category'].'<br>'.$post['fiberoutlines'].', '.$post['copperoutlines'].' '.$post['networkingoutlines'];
?>

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

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.