[SOLVED] Where can I show registered FrontendUsers fields?
[SOLVED] Where can I show registered FrontendUsers fields?
Hi, I want to use FrontendUsers module in my site, so I was setup the FrontendUsers module and add some groups and associate some fields. Then simple test it, and register a few of fake users. Simply works. The problem is where can I show these registered users fields values? Could someone help me to find that? or some module which adds that kind of funcionality?
Last edited by cve on Sat May 04, 2013 9:27 am, edited 1 time in total.
Re: Where can I show registered FrontendUsers fields values?
You also need the "Calguys User Directory" Module
Create a "Summary View template in the "Calguys User Directory" Module. See example below
This template will show a Photo, First Name and Last Name, Bio Title, Bio Description.
Add this to a page and you should see the result.
Example here:
http://www.mgaco.com/about-us/our-team/
Create a "Summary View template in the "Calguys User Directory" Module. See example below
This template will show a Photo, First Name and Last Name, Bio Title, Bio Description.
Code: Select all
{foreach from=$users item='oneuser'}
<article class="bio">
<img src='{$field_path}/uploads/feusers/{$oneuser.properties.photo}'
alt="{$oneuser.properties.first_name} {$oneuser.properties.last_name}" />
<div class="info">
<div class="bio-name"><h2>{$oneuser.properties.first_name} {$oneuser.properties.last_name}</h2></div>
<div class="bio-title"><h5>{$oneuser.properties.title}</h5></div>
<div class="bio-description">{$oneuser.properties.bio}</div>
</div>
</article>
{/foreach}
Add this to a page and you should see the result.
Code: Select all
{CGUserDirectory group="your_group" action="default" sortby="f:title"}
http://www.mgaco.com/about-us/our-team/
Re: Where can I show registered FrontendUsers fields values?
Thaks, for very useful answer, but it seems like this module shows this fields on frontend, but I mean some "administration" functionality, where can I manage users and its fields.
Re: Where can I show registered FrontendUsers fields values?
FrontEndUsers does that.. Go to the Users tab, click on a user... Then click 'next' after the name and password page to get to the fields.