• Hi MM,

    I’m just discovering your Visual Form Builder plugin – and it looks great!

    I have one question:
    Can we deactivate the Verification process ?

    I would my visitors to be able to submit without verification.

    If it’s not possible from the WordPress Dashboard, can I delete the PHP Code in visual-form-builder/visual-form-builder.php? If so – can you specify code to delete or recode?

    Thanks

    Diane

Viewing 7 replies - 1 through 7 (of 7 total)
  • You are welcome to remove the verification but it will require modification to the code. Remove the verification HTML and then ook in the code for things checking against vfb-spam and vfb-secret and remove those checks.

    I advise against this as it will open your forms up to SPAM.

    can someone give me detailed step by step instructions & which part of the code i need to remove?

    bovacik

    (@bovacik)

    Hi MMURO,
    that is fantastic plug thanks.
    I need to change verification language from English to Turkish. How can I change it? Could you please help me?

    Thanks

    This verification requirement makes your product simply unusable. Not every application is public facing and needs verification. Uninstalling it today.

    It definitely should be an option and not required on all forms.

    I agree with affordableseo.

    Should be optional

    It’s actually quite easy to remove. The author already has functionality to disable the verification if the user is logged in. That verification simply needs to always return true to disable it altogether.

    Edit visual-form-builder.php

    Change line 2009

    Old Code
    if ( is_user_logged_in() ) {

    New Code
    if (1) {

    Lastly comment out line 2020, it starts out like:
    $verification .= '

    Now no one will need to complete the verification, they will not even see it. The submit button will still remain in its own fieldset, which didn’t bother me.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Visual Form Builder – Verification’ is closed to new replies.