Skip to content

Instantly share code, notes, and snippets.

@3GA
Forked from WebEndevSnippets/functions.php
Created September 21, 2016 11:14
Show Gist options
  • Select an option

  • Save 3GA/471106050fe1c6980add622eed563de3 to your computer and use it in GitHub Desktop.

Select an option

Save 3GA/471106050fe1c6980add622eed563de3 to your computer and use it in GitHub Desktop.
Gravity Forms: Auto login to site after GF User Registration Form Submittal
add_action( 'gform_user_registered','we_autologin_gfregistration', 10, 4 );
/**
* Auto login to site after GF User Registration Form Submittal
*
*/
function we_autologin_gfregistration( $user_id, $config, $entry, $password ) {
wp_set_auth_cookie( $user_id, false, '' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment