Comment to How can i delete the info in the red square.
-
Hello @Busimatch !
If you don't need that info in the member toolbar then you may hide the elements with the following CSS classes:
.bx-menu-account-popup-profile-create
.bx-menu-account-popup-profile-switcher
-
-
you can hide at navigation app @ System->Account Popup and deactivate "Profile Switcher" and "Create Profile".
Also, as @LeonidS implied, you may simply add "display: none" for the style attribute in artificier template:
.bx-menu-account-popup-profile-create, .bx-menu-account-popup-profile-switcher {
display:none;
}
-
-