Page 1 of 1
[SOLVED] Where can I show registered FrontendUsers fields?
Posted: Tue Apr 30, 2013 5:32 pm
by cve
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?
Re: Where can I show registered FrontendUsers fields values?
Posted: Tue Apr 30, 2013 7:20 pm
by sugna
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.
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"}
Example here:
http://www.mgaco.com/about-us/our-team/
Re: Where can I show registered FrontendUsers fields values?
Posted: Wed May 01, 2013 8:58 am
by cve
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?
Posted: Wed May 01, 2013 2:59 pm
by Wishbone
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.