Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active April 4, 2016 05:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/ab0626e5c2fef4db1f2b to your computer and use it in GitHub Desktop.
Save spivurno/ab0626e5c2fef4db1f2b to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Forms // Set Form Target Property
<?php
/**
* Gravity Wiz // Gravity Forms // Set Form Target Property
* This example sets the target to "_parent"; useful when loading a form in an iframe and submitting the form to the parent page instead of reloading in the iframe.
*/
add_filter( 'gform_form_tag_1237', function( $tag, $form ) {
return str_replace( '>', ' target="_parent">', $tag );
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment