Hi,
I saw your youtube channel, very very helpful videos and tutorials!! I would like to ask, is there a way that I could direct my users to page automatically immediately they have sign-in/login to my site? I have checked wix documentations, and it seems the workaround is through coding in velo, I have seen onLogin, but as I am still quite new, I wonder if you could help. Once again, thank you.
Hi Hito,
Thanks for watching and supporting the channel!
You are in the right direction with the onLogin. You will want to add something like the following on you masterpage.js
import {authentication} from 'wix-memebrs-frontend'
import wixLocation from 'wix-location'
$w.onReady(function(){
authentication.onLogin(()=>{
wixLocation.to(the url you want)
})
})
Good luck!
Eitan