jsilva7765 0 Report post Posted July 9, 2011 I tried to find plugin to do this but was unsuccessful. I am using a membership system and after registration it redirects them to there dashboard profile. How can I change the redirection path after registration. All I want is them to go back to the home page or the page they were at before selecting register. Any ideas? Share this post Link to post Share on other sites
catrina 103 Report post Posted July 9, 2011 Which theme and membership system are you using? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
jsilva7765 0 Report post Posted July 9, 2011 I am currently using Platform Pro and WP-Member. Share this post Link to post Share on other sites
catrina 103 Report post Posted July 9, 2011 Are there any settings for that plugin that permits you to change where the user goes? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
jsilva7765 0 Report post Posted July 9, 2011 No it looks like after the user registers it just passes them on through the normal WP Registration process then redirects them to the dashboard. I know there should be some where to change the redirect path. I looked in the wp-login.php file but I couldn't really make sense of where I would need to change. Share this post Link to post Share on other sites
catrina 103 Report post Posted July 9, 2011 Changing the wp-login.php file directly may not be the solution you're looking for since adjusting it might cause other problems. Does the plugin have code you can look into and edit? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
jsilva7765 0 Report post Posted July 9, 2011 Yes and no, the plugin uses a Cube something for encryption. So 90% of the plug files are encrypted so the code is useless. Do you know any plugin's that may all me to re-direct? I looked into Peters Redirection but it doesn't allow you to change what happens after a user registers only when they attempt to login. Share this post Link to post Share on other sites
catrina 103 Report post Posted July 9, 2011 There is this one: http://wordpress.org/extend/plugins/register-plus/ and if that one doesn't suit your needs, there's this list of more: http://www.webdesignlessons.com/5-member-registration-wordpress-plugins/ Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
Simon 248 Report post Posted July 9, 2011 There is a filter: `registration_redirect` the default is wp-login.php?checkemail=registered so you could try: `add_filter( 'registration_redirect', create_function( '', 'return "hxxp://mynewurl";' );` Replace the url...untested... Share this post Link to post Share on other sites
jsilva7765 0 Report post Posted July 10, 2011 Hi Simon, Thanks for the code unfortunately I am not savvy enough with PHP yet. Where would I put that code or what would I replace? Share this post Link to post Share on other sites
Simon 248 Report post Posted July 10, 2011 if you have platformbase activated, then add it to platformbase/functions.php Share this post Link to post Share on other sites