How to fix "Bimber" Theme ?
1. Go to "wp-content/plugins".
2. Open the file "bp-custom.php" ( if you didn't find it just create a new one ).
3. Paste the code in the page below :
https://gist.github.com/KaineLabs/50f4a50c199b87883363b34e44901a79
4. Go to "wp-content/themes/bimber/includes/plugins/buddypress/buddypress.php"
and remove the line 16 :
define( 'BP_DEFAULT_COMPONENT', 'profile' );
5. Save the file.
Youzify Login Page Always Redirect User to Wp-login.php (Bimber Issue)
Please add below code into functions.php file of the active theme
function custom_login_page() { $new_login_page_url = home_url( '/login/' ); // new login page global $pagenow; if( $pagenow == "wp-login.php" && $_SERVER['REQUEST_METHOD'] == 'GET') { wp_redirect($new_login_page_url); exit; } }
if(!is_user_logged_in()){ add_action('init','custom_login_page'); }