Support » Plugin: Visual Form Builder » [Plugin: Visual Form Builder] How can I switch off verification and leave only submit button

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Matthew Muro

    (@mmuro)

    Right now, the verification is automatically included with every form and can’t be turned off.

    mmuro

    I just discovered Visual Form Builder plugin, and it looks great!

    With verification process turn on/off and CAPTCHA this plugin would be not just great but perfect and I believe complete.

    Thank you for such a plugin.

    Regards,

    I certainly agree with juansandro. That kind of flexibility is critical to alot of people. I hope to see this capability soon.

    Someone know if it’s possible to remove the verification button?

    I agree – I would like the verification disabled as well.

    What is the purpose of it anyways?

    There’s an easy work-around for this: just adjust the settings of the verification field so that it’s not required. You can change the text to whatever, like “Type ‘human’ if you’re not a spam robot”– and even if they don’t do it, they can still submit the form.

    All you need to do is change the settings of the verification field to not be required and then add in to the css classes input box, dontshow. Go to your style sheet and make a new line .dontshow {display:none;} this way people will never even see it… u can do some more CSS work to adjust the position of the submit button so that there is no gap

    Hi Guys.. i was messing for the same.. and i come with a trick to do that

    assign a class e.g nodisplay to the verification and do changes in css as follows

    .nodisplay h3, .nodisplay p, .nodisplay h3, .nodisplay a, .nodisplay label
    {
    display:none;
    }
    input.nodisplay
    {
    display:none;
    }

    its working fine in my project

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Plugin: Visual Form Builder] How can I switch off verification and leave only submit button’ is closed to new replies.