Add Disclaimer or Text After Submit Button in Gravity Forms
Use this snippet to put a snippet of text after your submit button in Gravity Forms. Super simple to use.
<?php
/**
* ----- Add comment AFTER submit button on ALL Gravity Forms forms.
* @link https://docs.gravityforms.com/gform_submit_button/#2-add-text-after-the-button-
*/
// Add consent statment after Submit button
add_filter( 'gform_submit_button', 'add_paragraph_below_submit', 10, 2 );
function add_paragraph_below_submit( $button, $form ) {
return $button .= "<p>By filling out this form, I acknowledge that I have read, consent to, and agree to be bound by, the terms of our <a href=\"/company/privacy-statement/\" target=\"_blank\">Privacy Policy</a>.</p>";
}