-
Shazzad Hossain Khan replied to the topic disable the /register/ redirect in the forum How-to & Troubleshooting 10 years, 11 months ago
Ok, to properly stop the redirect, you need to hook into WP
init
action.add_action( 'init', 'signup_redirect_remove_init', 9 );
function signup_redirect_remove_init(){
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
}Note: the priority should be lower than 10, as we need to remove action before it…
-
Shazzad Hossain Khan replied to the topic [Resolved] Disabling register redirect in the forum How-to & Troubleshooting 10 years, 11 months ago
Ok, to properly stop the redirect, you need to hook into WP
init
action.add_action( 'init', 'signup_redirect_remove_init', 9 );
function signup_redirect_remove_init(){
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
}Note: the priority should be lower than 10, as we need to remove action before it…
-
Shazzad Hossain Khan posted an update 13 years, 6 months ago
Need some js support to upgrade my content tabset plugin …
@sajib1223
Active 2 weeks ago