Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/cda5f627ecafed3d305c8dafb258f2b1 to your computer and use it in GitHub Desktop.
Save spivurno/cda5f627ecafed3d305c8dafb258f2b1 to your computer and use it in GitHub Desktop.
<?php
/**
* Gravity Wiz // Gravity Forms // Default Form List to Active Forms
* http://gravitywiz.com/
*/
add_action( 'plugins_loaded', function() {
if( is_callable( array( 'GFForms', 'get_page' ) ) && GFForms::get_page() == 'form_list' ) {
if ( ! isset( $_GET['filter'] ) ) {
wp_redirect( add_query_arg( array( 'filter' => 'active' ) ) );
exit;
}
}
} );
@spivurno
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment