bcosynot
bcosynot

Reputation: 6013

How do I list all nodes created by user specified in argument using Views in Drupal?

I have been trying to create a page using views that will list down all the nodes authored by a specific user. The user name will be specified in the path (like - stuff/[user-name] )

Can someone please tell me how to do this using Views. I am stuck on a dead end

Upvotes: 0

Views: 305

Answers (1)

Albert Skibinski
Albert Skibinski

Reputation: 499

for the views url path specify: stuff/% in the arguments section add: user -> user: name

Should do it, but I'm not sure if it isn't buggy (see this issue: http://drupal.org/node/744468)

If you use user:id instead of username, you will be fine.

Upvotes: 1

Related Questions