Redirect after register/registration
-
Very basic question - just curious to know where I can edit the redirect path that a user is forced to upon registering?
-
You can do this in a plugin, using the hook.
filter:register.complete
Set the referrer property to the url you want to redirect to.myPlugin.onRegisterComplete = function(data, callback) { data.referrer = 'https://myforum.com/topic/1/welcome' callback(null, data); }
Copyright © 2024 NodeBB | Contributors