@blue-cat I imagine this best being accomplished through the reputation system. If one were to create a category called "Introductions" that did not require any reputation to post, but all other categories required some reputation, then new users would only have the option to post in the "Introductions" category. However, from what I can tell there is not currently the option to require minimum reputation before posting to categories. I hope someone has a more usable answer.
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?
-
Is this to navigate to some static 'welcome page', that you could, potentially, use to track as goals in analytics?
I'd like that too..
-
@xulture yep. Would like to funnel new users through a static page listing the site's features
-
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); }
-
@baris thank you very much! Much appreciated.