I'd like to create a view that presents each user with a list of the comments that s/he has added to forum topics.

I'd like to filter out everything, including forum nodes, and leave each user with a string of the "comment" titles that s/he posted to the forums.

I'm using Drupal 6.x and the latest version of Views, and I can't figure out how to do this.

If I add forum topics to filters, I end up doing what I figured I'd end up doing: presenting comment title fields by many writers that belong to particular forum topics.

At the same time, I can't find a way to add forum comments to the filter.

Any help would be greatly appreciated.

Comments

bwv’s picture

Here's a view that will display a user's own content on the "my account" page. Perhaps you can import it and see if you can refine it to suit your needs.

http://drupal.org/node/351342

sharrison’s picture

That's a great view. So thank you for directing me to it.

It's not allowing me no matter how I tweak it to filter according to a users own comments.

I think that the problem may be that comments are not their own content type.

So when this view and the one's I've created start filtering content according to node type, they can't put comments into a filter category of its own.

I'll keep trying.

And, again, thank you.

bwv’s picture

Just found this; looks like you may have to use arguments.

http://drupal.org/node/684322

And here is a module, but it is for 5.x (perhaps you could convert it to 6.x):

http://drupal.org/project/comments_page

parallax’s picture

1) Create a "comments" view
2) Add fields "comment: author" and "comment body
3) Add relationship "comment: user"
4) Add filter "user: current"

That's it...

Gretz
patrick