If a user is logged in it displays the box with the buttons Profile and Log out, if they’re not logged in it’s showing the box with the Log in and Register buttons.
Also, for forms that are about multiple distrinct categories.
Nice. I was trying to set up something similar to only display a member menu but only if they’re logged in. Do you have an example of how you were able to do it?
@Rob I have this in the masterPage
currentMember.getMember().then((member)=>{
if(member){
//if the member is logged on
}else{
//if the member is not logged on
}
})
I’d guess you’ll have a collapsed menu that expands if the user is logged on (remember to import { currentMember } from ‘wix-members’