Skip to:
Content
Pages
Categories
Search
Top
Bottom

Buddypress registration shortcode

  • @aires4411

    Participant

    I would like to display the registration form on a certain page is there a shortcode that I am over looking.

    Thank you

Viewing 8 replies - 1 through 8 (of 8 total)
  • @henrywright

    Moderator

    Hey @aires4411

    This may not be what you want, but have you thought about changing the name and slug of the registration page via WP admin > Pages? That will let you ‘move’ the registration page.

    @aires4411

    Participant

    Well what I would like to do is add some content or notice on that same page. So I just thought it was possible to add a shortcode to the wordpress editor along with my custom content

    @rosyteddy

    Participant

    @rosyteddy

    Participant

    @aires4411

    Participant

    Thanks you. I will give them both a try.

    @danbp

    Participant

    @aires4411,

    I would like to do is add some content or notice on that same page.

    There’re over 15 action hooks on the register template (bp-legacy/buddypress/members/register.php)

    If your goal is to add a notice or even a video, a welcome message or some other stuff, you can use these hooks ! Without any plugin or template alteration.

    Write a function containing your custom content and add it to the hook.

    For example, a welcome message above the register form:

    
    function aires_msg() {
    echo '<p>Hello World !</p>';
    }
    add_action( 'bp_before_register_page', 'aires_msg' );

    @aires4411

    Participant

    @danbp,

    Thats awesome!!

    Thank you.

    @danbp

    Participant

    You’re welcome ! 😉

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Buddypress registration shortcode’ is closed to new replies.
Skip to toolbar