Hi, I have a website created with NationBuilder (NB) http://www.irmarketingsuccess.com/ and there are 2 forms need to be located in the same page. The 2 different forms are in 2 separate form page. Recently, I'm using iFrmae to embedded them on home page. However, the problem is the thank you page won't be opened up a new page but embedded in the small frame as well. I tried to use jQuery to add attribute "target = _blank" to the form but fail. Because NB's code generates the signup forms won't compliance with my jQuery code. If I changed to copy all the forms' source code to this home page, then, the 2nd day, people won't be able to sign up. I think it's the session expired issue. Therefore, what is the best way to embed 2 different forms on the sidebar and at the bottom of the body area as for this website? Let me know. Thanks! Lynn C
Please see below.
Showing 5 reactions
Sign in with
I am trying to do something similar
Use this code to embedded in the home page’s template.
{% subpage “watch_the_webinar_now” with “fluid_no_header_footer” %}
The “watch_the_webinar_now” is the signup form’s slug, I can use the same slug for the sidebar. “fluid_no_header_footer” is a new template as _fluid_no_header_footer.html created under domain->Theme->files, used for the wider form for body section.
And create another template with narrow width for sidebar.
That’s it…
If I put the code like this {{ page[‘watch_the_webinar_now’] }}, it won’t work.
What’s the correct code to load the slut ‘watch_the_webinar_now’ into my main page?