Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 1 replies (of 1 total)

  • fabiojr2016
    Participant

    @fabiojr2016

    Perfecto, muchas gracias por el código… si, con ese código si pude deshabilitar el registro de BuddyPress y dejé el registro original de WordPress. Yo cree el archivo bp-custom.php dentro de la carpeta wp-content/plugins/

    Es decir, tengo Buddypress funcionando, pero con registro de WordPress.

    <?php
    /*disable registration bp */ function my_disable_bp_registration() { remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ ); remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ ); } add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ ); add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . ‘/wp-login.php?action=register’; }
    ?>

Viewing 1 replies (of 1 total)
Skip to toolbar