Hi,

I know profile can show member list, however I want add views filter.
How to make a member list + views like this : http://ifood.tv/member

Anyone can show me step by step or share "Import a View Code" to me

thanks.

Comments

Try installing the usernode

Try installing the usernode module (http://drupal.org/project/usernode) + views. Usernode enables views to list users like nodes of any other type.

I have the same problem.

Hi keorn,

I already installed and enabled those modules and I can't see the user's list.
I checked the page category. Can you share me your settings for your user's list in the q=admin/build/views?

Mine is:
Name: userlist
Access: 2 checkboxes are not checked
Page: checked provide page view
URL: userlist
View Type: Full Nodes
Use Pager: Checked

Thanks.

Kind Regards,
Mark

I just did that

Go into Administer>menu add an item called members
put in the make the Path node/profile and save,
then edit your user settings to allow visitors to view profiles.

www.nowstaff.com/drupal-5.5 to see how it works for me.

thanks all reply I wonder to

thanks all reply

I wonder to do it without usernode module ,
usernode module will add data to my database.

SueCarlson, this is only profile page, without views filter

Site only has two memebers

Not really sure what you mean without views filter, however, anyone can view the profiles publically by clicking on the name. Certain parts of the "profile" are hidden to all but admins, and other parts you have to be approved to view. The basics are shown in the public profile.
I am alone here so can't really test this on my own.

I'm doing the same thing at

I'm doing the same thing at the moment.

I am using nodefamily, nodeprofile and user node.

You can start your research here:

http://drupal.org/node/206766

and more specifically here:

http://drupal.org/node/129957

Once you install the necessary modules, you can create a content type for profiles with the CCK fields you need. Make a parent to child relation between usernode and your profile content type using node family.

After that you have different options, such as using views fusion to make a list or table.

I've decided to make a View using teasers and making a node-usernode.tpl.php file to display teasers exactly the way I need them to appear, including the child nodes of the profile content type.

The nodefamily readme file explains how to do this kind of theming - you can start with the following code in the teaser part of your template file to figure out where you want to go :

$children = nodefamily_relation_load($nid);
echo "<pre>";
print_r($node);
print_r ($children[0]);
echo "</pre>";

Hope this helps!