Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created January 13, 2017 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save strangerstudios/0fd19176ae5349b2e7cde4ee44c6aa24 to your computer and use it in GitHub Desktop.
Save strangerstudios/0fd19176ae5349b2e7cde4ee44c6aa24 to your computer and use it in GitHub Desktop.
Filter the BuddyPress Registration page to the Membership Levels page.
<?php
/*
Filter the BuddyPress Registration page to the Membership Levels page.
*/
function my_bp_get_signup_page( $page )
{
//is PMPro activated?
if(defined('PMPRO_VERSION'))
{
//filter the BuddyPress registration page to PMPro levels page
$page = pmpro_url('levels');
}
return $page;
}
add_filter( 'bp_get_signup_page' , 'my_bp_get_signup_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment