Can we still use marketo form 1.0 to built forms?

Anonymous
Not applicable

Can we still use marketo form 1.0 to built forms?

Is it possible to use marketo form 1.0 builder instead of form 2.0 to generate forms?
Tags (1)
5 REPLIES 5
Anonymous
Not applicable

Re: Can we still use marketo form 1.0 to built forms?

If you have forms 1.0 then yes.
When you create a new form as you name it you should see a dropdown box asking you to select forms 2.0 or form 1.0. If you don't see this it means that you started using Marketo after forms 2.0 was released so there is no real need to have access to forms 1.0 because 2.0 is simply way better 🙂
Anonymous
Not applicable

Re: Can we still use marketo form 1.0 to built forms?

Thanks for your reply.

It shows me form 2.0 and form Editor original options in drop down.

When i built form using form editor original it doesnt show me any opiton to copy embedded code.

Basically my need is to made custom form like we can do using form 1.0 by adding custom html and css. I dont want to use embed code form 2.0 script.



Anonymous
Not applicable

Re: Can we still use marketo form 1.0 to built forms?

Forms 1.0 does not feature the option to embed code. It is specific to 2.0.

You can embed 1.0 in a landing page and then iFrame iit.

In 2.0 the JavaScript (embed code) replaces the iFraming technique.
Anonymous
Not applicable

Re: Can we still use marketo form 1.0 to built forms?

Both are supported.
Anonymous
Not applicable

Re: Can we still use marketo form 1.0 to built forms?

In 2.0 the JavaScript (embed code) replaces the iFraming technique  ?

How to use above technique can you please elaborate rember that i dnt want to use someting like below :
  1. MktoForms2.loadForm("//app-sjqe.marketo.com", "718-GIV-198", 621, function(form){
  2.   //check if the form is submittable
  3.   if(form.submitable()){
  4.     //Set it to be non submittable
  5.     form.submitable(false);
  6.   }
  7. });
  8.  
  9. //Somewhere else in your code after the user has cleared some hurdle you've set for them, you'd then re-enable submission like this:
  10. MktoForms2.getForm(621).submitable(true)