cberry1971 wrote: field name = cb_membertype
group name = Athlete
Try this in CBcontent module... CSS input area. Should hide the manageConnections menuItem, if the current user is of type "Athlete".
[cb:if cb_membertype="Athlete"] li.cbMenu_UE_MENU_MANAGEMYCONNECTIONS { display: none; } [/cb:if]
EDIT:
Sorry, i had a little typo error. I forgot to add the "
li." in fornt of the class!
Alternative with
jQuery:
[cb:if cb_membertype="Athlete"] $(".cbMenu_UE_MENU_MANAGEMYCONNECTIONS").hide(); [/cb:if]