How can I remove certain tabs in the "My Profile" page?
Our company wants to use the WA website as little as possible so as to funnel most people through our main website. We want to strip down as much as can lead to confusion as possible in the WA website.
We wish to remove three tabs in the "My Profile" page which we have no use for and will just confuse our members. We only want to keep "My Profile" and "Invoices and Payments"
I have a good understanding of CSS but since I cannot see the code in front of me, I do not want to risk executing the wrong command and doing something I do not want to. What should I enter in the CSS customization part in Admin View that will allow me to remove those tabs?
Thank you in advance.
-Q
-
Martha Stone-Martin commented
This worked for me.
#memberFieldsContainerShowLink {
display: none;
}
#membeSubscriptionsShowLink {
display: none;
}
#memberPhotoGalleryShowLink {
display: none;
}Shout out to Upwork's Pritika G. for the solution.
-
All you need to do is find the id of the element you want to remove (I suggest using "Inspect Element" in Chrome (see https://developer.chrome.com/devtools/docs/dom-and-styles ).
And then copy the id of that element into your CSS settings and apply the "display:none;" property.
For example if you wanted to hide the "Email subscriptions" link you would use:
#FunctionalBlock1_ctl00_ctl00_subscriptionsTabLink{display:none;}