Last active
November 22, 2016 10:35
-
-
Save JudeRosario/bac5c0f4beed69215230 to your computer and use it in GitHub Desktop.
M2 + Gravity Forms Registration
This file contains 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
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