Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active November 22, 2016 10:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save JudeRosario/bac5c0f4beed69215230 to your computer and use it in GitHub Desktop.
Save JudeRosario/bac5c0f4beed69215230 to your computer and use it in GitHub Desktop.
M2 + Gravity Forms Registration
add_filter('ms_frontend_custom_registration_form','gravity_register_form') ;
function gravity_register_form($form) {
if(!is_user_logged_in())
return do_shortcode('[gravity_form id =1]');
return $form ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment