¿Está buscando una manera de redirigir a los usuarios después de iniciar sesión a una página específica? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para redirigir al usuario BuddyPress después de iniciar sesión en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo bp-custom.php de tu tema:
function wps_redirect_bp_login() { if( is_user_logged_in() && bp_is_register_page() ) { bp_core_redirect( get_option('home') . '/the-slug/' ); } } add_action( 'template_redirect', 'wps_redirect_bp_login', 1 );
Debe actualizar bp_core_redirect( get_option('home') . '
/the-slug/
' );
y cambiar /the-slug/
por el slug de la página que desea cargar.
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 62 mejores temas gratuitos para blogs de WordPress y cómo crear un formulario de donación de WordPress.
That didn’t work. This worked.
//Redirect after login
function bb_admin_default_page() {
return ‘/URL SLUG/’;
}
add_filter(‘login_redirect’, ‘bb_admin_default_page’, 100, 3);
Any way to redirect to a specific page, but if an “http_referrer” is Present, then let that take priority? I’ve been struggling with this issue for far far too long 🙁
You may want to check out the $_SERVER super global: https://www.php.net/manual/en/reserved.variables.server.php
It has an option for reading the http_referrer header. You may want to also check out that page’s note on the http_referrer header.
Hi There,
Thanks for the code. This Worked like a pro for me.
I used the “code snippet” as you directed on other blog, because I don’t wanted to go into the actual wordpress file i used it.
Thank you for the help.
Cheers & a Cup of Coffee from my side.
Thanks
Tried, doesn’t work
Are you getting any error messages?
Tried but it didnt work