Is it possible to hide the login button and if so how? I saw an earlier post saying “Yes, with CSS” but it didn’t explain further - I’m using the business plan so cannot customise code.
1 Like
You can! You can’t edit existing code, but you can add CSS to themes, from Admin > Themes & components
To hide it from the dropdown menu in the header you can add
.user-menu.revamped #quick-access-profile li.logout {
display: none;
}
4 Likes
thanks so much, will give it a go!