I’m a new member, I’d like to ask about wix member area. I’ve tried to use the following code to sign anyone to site member but that never work. Anyone can help me ? Thank you.
wixUsers . register ( email , passwordT )
. then (( result ) => {
console . log ( result . user );
const status = result . status ;
$w ( "#texterror" ). show ();
setTimeout (() => {
$w ( "#textsuccess" ). text = "Passwords successfully registered in the site members" ;
}, 3000 );
$w ( "#textsuccess" ). hide ( "bounce" );
wixUsers . login ( email , passwordT )
. then (() => {
wixWindow . lightbox . close ();
wixLocation . to ( "/categorie" );
})
})
That code doesn’t display new user in the site member underbeneath Contact tab :