Forked from strangerstudios/my_bp_get_signup_page.php
Created
February 7, 2017 20:12
-
-
Save greathmaster/de3a997f47a3abfd9f9ff345b64921a2 to your computer and use it in GitHub Desktop.
Filter the BuddyPress Registration page to the Membership Levels page.
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
<?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