I embeded mailbhimp signup form inside a template specially created for the subscribe page. I have my main <form id="Form1" runat="server"></form> tag on the main master template which is preventing the mailchimp form to work. I looked on mailchimp website for a solution and found out that mailchimp embed form cannot be inside <form id="Form1" runat="server"></form> tag.
I have two user controls working from the website and mailchimp signup form is the only one that needs to be outside the <form id="Form1" runat="server"></form> tag.
I dont know how to put the form tag inside the user control, and I am not familiar with the whole API thing. I am new to umbraco and I am a web designer :(
There's a usercontrols folder in the root of the website. You'll see files in there with ascx extensions for each of your user controls. You should be able to cut and paste the form tag from your master page into the ascx file. Worth a shot, but past that, you may need to get the developer responsible for the user controls involved.
Mailchimp Embed code not working
Hi there,
I embeded mailbhimp signup form inside a template specially created for the subscribe page. I have my main <form id="Form1" runat="server"></form> tag on the main master template which is preventing the mailchimp form to work. I looked on mailchimp website for a solution and found out that mailchimp embed form cannot be inside <form id="Form1" runat="server"></form> tag.
I have two user controls working from the website and mailchimp signup form is the only one that needs to be outside the <form id="Form1" runat="server"></form> tag.
Can someone help please?
Thank you in advance.
Can you put the runat server form tags inside the user controls instead of in the master, so the embed form is no longer in the runat server form?
Mailchimp also has an api you can use to write your own signup form however you like.
I dont know how to put the form tag inside the user control, and I am not familiar with the whole API thing. I am new to umbraco and I am a web designer :(
Is there an easy way out?
There's a usercontrols folder in the root of the website. You'll see files in there with ascx extensions for each of your user controls. You should be able to cut and paste the form tag from your master page into the ascx file. Worth a shot, but past that, you may need to get the developer responsible for the user controls involved.
I did try that, it says I can only have one form tag, not two...
is working on a reply...