How to redirect a new member to the member profile page to fill out the rest of members info?

This is how I do it:

Using your form’s “Thankyou for submitting” message. Add the below code to your sign up page/lightbox

import wixLocation from ‘wix-location’ ;

$w . onReady ( function () {
$w ( “#iSubmitText” ). onViewportEnter ( ( event ) => {
wixLocation . to ( “/your-desired-landing-page” );
});
});

Hope that helps - I am only 4 years too late lol