How to remove the Previous button in Gravity Forms

You can’t delete the previous button but you can hide it using CSS

body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button {
    display:none
}

There may be some instances where you just want to hide a particular Previous button or buttons.  You would add this to your Custom CSS settings…

In your theme CSS file you could add:

#gform_previous_button_4_24 {
display: none !important;
}

And of course you would change our your the above button ID for your own. You can find this using your browser’s Inspect tool.

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.