Created
July 23, 2018 17:04
-
-
Save m1ndspark/60ddc3c3cb57a6bdd060e3505a17fd51 to your computer and use it in GitHub Desktop.
Skip User Registration For Logged In Users - by Gravity Perks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Skip Registration for Logged In Users | |
| * http://gravitywiz.com/2012/04/24/skip-user-registration-for-logged-in-users/ | |
| * Works for GF User Registration 3.0 and greater. | |
| */ | |
| add_filter( 'gform_is_delayed_pre_process_feed', 'maybe_delay_feeds', 10, 4 ); | |
| function maybe_delay_feeds( $is_delayed, $form, $entry, $slug ) { | |
| if ( is_user_logged_in() && $slug == 'gravityformsuserregistration' ) { | |
| return gf_user_registration()->has_feed_type( 'create', $form ); | |
| } | |
| return $is_delayed; | |
| } | |
| add_action( 'gform_pre_process', 'maybe_skip_validation' ); | |
| function maybe_skip_validation( $form ) { | |
| if ( is_user_logged_in() && function_exists( 'gf_user_registration' ) && gf_user_registration()->has_feed_type( 'create', $form ) ) { | |
| remove_filter( 'gform_validation', array( gf_user_registration(), 'validate' ) ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment