Search code examples
htmlwordpressgravity-forms-plugin

Remove submit button in WP Gravity forms plugin


How to remove submit button in Wordpress Gravity Form Plugin?

I'd like to insert custom HTML which contain one field and one button inlined and get rid of default button.

The example of the form is on http://fundersandfounders.com "Sign up for VIP tickets"


Solution

  • In "form settings" (the very top option in your Form Builder) click 'edit'.

    Under "Advanced" tab select "Form Button: Image"

    Enter the url of your button image.

    Then when you create your shortcode deselect "Display form title" and "Display form description".

    Your shortcode will look like this:

    [gravityform id="X" name="X" title="false" description="false"]
    

    Replace "id" and "name" with your form information.