3217 Posts in 853 Topics by 812 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1278 Views |
-
How to display the member group name (title) on the front-end?

28 June 2010 at 10:42pm
Hi, I want to display the member Group title on my template after a member has signed in rather than the member name. eg. "Acme Ltd." instead of "John Smith".
I tried to create a new public function getGroupName() , so that I can call it on my template like so $Member.GroupName - but I'm not having any luck with it.
Can anyone advise the simplest method to call this?
-
Re: How to display the member group name (title) on the front-end?

29 June 2010 at 10:10am
I tried to create a new public function getGroupName() , so that I can call it on my template like so $Member.GroupName
Well that function would have to be on the Member class (or a decorated instance of a member). One thing you would have to consider is that members has multiple groups so you would be dealing with a set rather than 1 group instance.
In the template you could try
<% control Member.Groups %>
$Title
<% end_control %> -
Re: How to display the member group name (title) on the front-end?

29 June 2010 at 9:00pm
A much better solution, thank you.
| 1278 Views | ||
|
Page:
1
|
Go to Top |


