Reputation: 6013
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
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