• Resolved henarangoda

    (@henarangoda)


    I want to hide submit button only for a specific form not all of forminator forms.

    I tried this below code snippet in both appearance and wp additonal css sections, but nothing is worked.
    #submit.forminator-field {display: none;}

    Please help me to solve this!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @henarangoda

    I hope you are doing well.

    You can use the ID to select a specific form:

    https://monosnap.com/file/OGriGzziO4VLFhJQ72x9IKnGlOv3Zd

    #forminator-module-3154 .forminator-row-last .forminator-button-submit{
        display: none;
    }

    Or just use:

    .forminator-row-last .forminator-button-submit{
        display: none;
    }

    In Forminator > Form > Appearance > Custom CSS, it will be applied to specific form only,

    Another alternative without any custom coding is using the conditional, edit the Submit button switch to conditional field and add a conditional that won’t exist on your form for example show if name-1 = -999999

    Best Regards
    Patrick Freitas

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @henarangoda ,

    We haven’t heard from you for several days now, so it looks like you don’t have more questions for us.

    Feel free to re-open this topic if needed.

    Kind regards
    Kasia

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Submit Button – Forminator’ is closed to new replies.