After Register successfully user must jump on their Profile page to create profile page
-
Hi
Is their any feature in NodeBB , Only After Register successfully user must jump on their Profile page to complete their profile page.
-
There is nothing built in but you could quickly build something with custom js, for example something like below would redirect user to their profile edit page if they haven't filled out their about me section.
$(window).on('action:ajaxify.end', async () => { if (app.user.uid > 0 && !app.user.aboutme) { const alerts = await app.require('alerts'); ajaxify.go('/me/edit'); alerts.alert({ type: 'info', message: 'Please fill in your about me section', }); } });
Copyright © 2024 NodeBB | Contributors