Youzify (formerly Youzer)

Broken BP Register Page Styling if Disable Youzify Membership System

Please use this snippet fot fix it

function yzc_disable_youzer_template() {
    if (bp_is_register_page()) {
        remove_filter( 'template_include', 'youzify_template', 999 );
        remove_action( 'bp_init', 'youzify_bp_overload_templates' );
        remove_filter( 'bp_get_theme_compat_url', 'youzify_buddypress_assets_path' );
        add_filter( 'youzify_deregister_bp_styles', '__return_false' );
    }
}
add_action( 'bp_init', 'yzc_disable_youzer_template', 9 );

Put it on "bp-custom.php" file inside folder "wp-content/plugins". If you don't have the file yet, please create a new file.