Skip to content

Instantly share code, notes, and snippets.

@NikV
Created September 7, 2015 21:28
Show Gist options
  • Save NikV/51dfc5ac189c9c9081be to your computer and use it in GitHub Desktop.
Save NikV/51dfc5ac189c9c9081be to your computer and use it in GitHub Desktop.
Add some text to the form preview footer
function modify_gform_preview_footer() {
echo "<p style='text-align: center'> I am adding some more info to this preview</p>";
}
add_action('gform_preview_footer', 'modify_gform_preview_footer');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment