Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/4eb901e6ce685a685780 to your computer and use it in GitHub Desktop.
Save JudeRosario/4eb901e6ce685a685780 to your computer and use it in GitHub Desktop.
Protected Content + Gravity Forms
add_filter('ms_frontend_custom_registration_form', 'custom_registration');
function custom_registration () {
// Put your registration form shortcode here.
return do_shortcode('[gravityform id="1" title="false" description="false"]') ;
}
@JudeRosario
Copy link
Author

Just copy/paste the code into the functions.php file of your child theme or a site specific plugin if you use one. You will have a new registration/sign up form for new users.

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