How do I hide the “My Account” link/button?

Use the code below to hide the “My Account” link/button.

It’s important to note that some features require that the “My Account” function be added and my prompt for the login depending on the function used. That being said, even if you use the code below, the app user may receive a prompt (depending on the feature and how it’s utilized).

1) Log into your App Manager and select your app.

2) Click Colors from the left-hand-side of the screen (or the middle of the screen).

3) Scroll down to the Advanced SCSS box. If there is already code in the box do not delete it! Simply add this code “below” the last character of code in the box.

/*** BEGIN: HIDE MY ACCOUNT BUTTON ***/
.item[ng-click="displayAccountForm()"] {
display: none;
}
/*** END: HIDE MY ACCOUNT BUTTON ***/

4) Click Save.