different header for different users

Hi, I’m working on a site where, users have 2 different rolls, like (buyer and seller)
now I want to show different header for buyer and for seller is different
Can i achieve it by velo ?

Yes you can.
Like you already defined 2 different USER-TYPES (byer & seller) .
Now you will need an if-else-query to determine which of the user-types is currently online.

You will have to write your code on the ----> MASTER-PAGE.

  1. User logs in and gets one of the mentioned user-types.
  2. OnLogin() (on MASTERPAGE) —> user-identification
  3. if (users-role === “type1”) {“do something”} else {do something else}

Now try to generate your code for role-identification.

Thanks velo-ninja , I find Velo menu documentation last night after post here , it return me an array then I splice it and set again the value of manu according to user roll, thanks again for you comment. I learned many things from your comments in several posts, I really appreciate you.