This two-part question is half an exact duplicate of How do you display a user's User Group? but I'm unable to leave a comment :(
I'm trying to display & check-for the user group a user belongs to on a public profile page. There are coaches and players.
The URL structure is domain.com/coaches/johnnyappleseed
Copying the exact example code given in the original question (link above) seems to just return the User's full name, not the group the user belongs to. What could I be missing?
Also, if johnnyapplseed is a coach, I can still access his profile page by going to domain.com/players/johnnyappleseed which is why I'm trying to check for the usergroup to begin with. Is checking for the usergroup in each player & coach profile template the correct way to do this?
UPDATE: I've attached a screenshot of all the information I think could possibly be relevant. This has to be something simple I'm overlooking!

{{ thePartner }}and{{ group }}what does it output in the browser? – Brad Bell Mar 09 '15 at 17:25{{ group }}returns the username "johnnyappleseed" .{{ thePartner }}gives me anObject of class Craft\ElementCriteriaModel could not be converted to stringerror – Chase Giunta Mar 09 '15 at 17:28.first()to the end of thecraft.users.usernameline and see if that helps. – Brad Bell Mar 09 '15 at 17:30