Is it possible to show the total number of links and comments made by a user on her profile page?
Thanks.
Is it possible to show the total number of links and comments made by a user on her profile page?
Thanks.
These should help:
Posts:
Journal entries:PHP Code:<a href="<?php echo $h->url(array('page'=>'all', 'user'=>$h->currentUser->id)); ?>">Posts: <?php echo $h->postsApproved(0, 'news'); ?></a>
Comments:PHP Code:<a href="<?php echo $h->url(array('page'=>'journal', 'user'=>$h->currentUser->id)); ?>">Journal: <?php echo $h->postsApproved(0, 'blog'); ?></a>
There's no built in function for counting votes, so you'd have to query the database if you want that.PHP Code:<a href="<?php echo $h->url(array('page'=>'comments', 'user'=>$h->currentUser->id)); ?>">Comments: <?php echo $h->countUserComments(); ?></a>
Search the Forums | Read the Documentation
Thank you so much!![]()
What if I want to display the number of posts submitted by another user, not by the one who is currently logged in? How do I do that?
One more, unrelated, question: Can I display the date a user joined the site?
Last edited by Patrik; 08-30-2010 at 07:30 PM.
Search the Forums | Read the Documentation
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks