I was wondering if someone could help me.
I want people to go to the homepage after registration and not to the dashboard. Is there a plug-in or easy code I can do to make this happen?
Thanks,
swaggers
I was wondering if someone could help me.
I want people to go to the homepage after registration and not to the dashboard. Is there a plug-in or easy code I can do to make this happen?
Thanks,
swaggers
This should help you:
http://wordpress.org/extend/plugins/peters-login-redirect/
Hi MichaelH,
That plugin only helps when a user logs in.
Is there a similar plugin that handles redirects after registration?
i do redirect, in same page where user do login with:
redirect_to=<?php echo "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>
add this in form like or where-you-want:
<form id="loginform" action="<?php echo site_url('wp-login.php', 'login_post') ?>?redirect_to=<?php echo "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>" method="post" name="loginform">
This topic has been closed to new replies.