Skip to:
Content
Pages
Categories
Search
Top
Bottom

how to edit register page for buddypress?


  • ingenxcomputers
    Participant

    @ingenxcomputers

    Evening

    Does anybody know how to edit the signup/register page for new buddypress members?

    I cant’t see it under pages or in the Buddypress plugin menu

    Richard

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi @ingenxcomputers

    If you are using BuddyPress version 12.0 and up, you can customize the title and the URL of these pages from the URLs tab of the BuddyPress settings: https://github.com/buddypress/buddypress/blob/master/docs/user/administration/settings/urls.md

    If you need to include these pages into a WP Nav menu, please have look to:
    https://github.com/buddypress/buddypress/blob/master/docs/user/administration/navigations/README.md


    bermudastream
    Participant

    @bermudastream

    Previously, it was possible to eliminate the registration page entirely, which I had to do because of excessive spam sign-ups. However, after the latest update, I attempted to delete the page, only to find that BuddyPress pages are no longer accessible in the network admin panel. I even tried renaming the registration page to something obscure, but I’m still inundated with bot and spam sign-ups.

    Is the BuddyPress team aware of what I perceive as a major setback in the latest update? Previously, I used a plugin (https://wordpress.org/plugins/user-registration/) to navigate around the weak registration page and I am still using it except that I have the main buddypress registration page causing problems which I cannot cancel. Perhaps I’m overlooking something. If so, could you provide suggestions on how to secure the BuddyPress registration page or eliminate it completely which I would prepare to do as
    I’ve never been able to customize it
    Mark M.


    ingenxcomputers
    Participant

    @ingenxcomputers

    so that plugin will let new users sign up for buddypress?

    Once you’ve downloaded it, do you install all folders into the WP plugins section?


    bermudastream
    Participant

    @bermudastream

    @ingenxcomputers I am seriously stressing because my site is constantly being violated by Russian bots after this latest update and you are splurting out nonsensical questions … Seriously?

    The plugin I mentioned is very well documented. I suggest that in the future you do a bit of homework first before jumping in without offering any advice or solutions

    Let’s discuss about your issue in this topic https://buddypress.org/support/topic/how-to-delete-register-page/ @bermudastream 🙏


    Printed Carrier Bags
    Participant

    @printedcarrierbags

    Hi Richard,

    To edit the signup/register page for new BuddyPress members, check if it’s listed under pages or the BuddyPress plugin menu. If not, you might need to explore the plugin settings or customization options.


    Mathieu Viet
    Moderator

    @imath

    Here’s a way to disable BuddyPress signup feature:

    
    function disable_bp_signups() {
    	add_filter( 'bp_get_signup_allowed', '__return_false' );
    	remove_filter( 'register_url', 'bp_get_signup_page' );
    	remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
    	remove_filter( 'wp_signup_location', 'bp_blogs_creation_location' );
    	remove_filter( 'wpmu_signup_user_notification', 'bp_core_activation_signup_user_notification', 1 );
    }
    add_action( 'bp_include', 'disable_bp_signups' );
Viewing 7 replies - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.
Skip to toolbar