Only show element to logged in members

Hello,

I would like to hide an element by default, and only show it to members that are logged in. I have searched and searched for codes but cannot find any. I’m not super advanced yet, can anyone help me out with an example?

Thanks so much!

Regards, Stefan

Seems like it should be easy enough. Set the element to be hidden by default, then do something like

import { authentication } from 'wix-members';

$w.onReady(function () {

const isLoggedIn = authentication.loggedIn();

if (isLoggedIn) {
  $w("#nameOfHiddenElement".show()
}
})

You can check out loggedIn here:

Thanks so much!