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.
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
Thanks you. I will give them both a try.
@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' );