Viewing 1 replies (of 1 total)
  • Hi @flynnjacobs,

    Hiding the submit button in the forms is not something we suggest because users will not have a way to complete the form submission. However, if you’d like to do this, you can do so with a bit of CSS code:

    
    .wpforms-container .wpforms-form button[type=submit] {
        display: none;
    }
    

    And in case it helps, here’s a tutorial from WPBeginner on how to add custom CSS like this to your site.

    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Remove submit button’ is closed to new replies.