Created
January 13, 2017 19:22
-
-
Save strangerstudios/0fd19176ae5349b2e7cde4ee44c6aa24 to your computer and use it in GitHub Desktop.
Filter the BuddyPress Registration page to the Membership Levels page.
This file contains hidden or 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
<?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