[SOLVED] Where can I show registered FrontendUsers fields?

The place to talk about things that are related to CMS Made simple, but don't fit anywhere else.
Post Reply
cve
Forum Members
Forum Members
Posts: 44
Joined: Wed Jul 07, 2010 10:54 am

[SOLVED] Where can I show registered FrontendUsers fields?

Post 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?
Last edited by cve on Sat May 04, 2013 9:27 am, edited 1 time in total.
User avatar
sugna
Forum Members
Forum Members
Posts: 196
Joined: Wed Oct 10, 2007 3:04 pm

Re: Where can I show registered FrontendUsers fields values?

Post 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/
cve
Forum Members
Forum Members
Posts: 44
Joined: Wed Jul 07, 2010 10:54 am

Re: Where can I show registered FrontendUsers fields values?

Post 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.
Wishbone
Power Poster
Power Poster
Posts: 1368
Joined: Tue Dec 23, 2008 8:39 pm

Re: Where can I show registered FrontendUsers fields values?

Post 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.
Post Reply

Return to “The Lounge”