Results 1 to 5 of 5

Thread: Show the number of links and comments from a user on her profile?

  1. #1
    Junior Member
    Join Date
    Aug 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Show the number of links and comments from a user on her profile?

    Is it possible to show the total number of links and comments made by a user on her profile page?

    Thanks.

  2. #2
    Former lead dev Nick's Avatar
    Join Date
    Jun 2009
    Location
    Kakamigahara, Japan
    Posts
    2,915
    Blog Entries
    88
    Thanks
    519
    Thanked 846 Times in 551 Posts

    Default

    These should help:

    Posts:
    PHP Code:
    <a href="<?php echo $h->url(array('page'=>'all''user'=>$h->currentUser->id)); ?>">Posts: <?php echo $h->postsApproved(0'news'); ?></a>
    Journal entries:
    PHP Code:
    <a href="<?php echo $h->url(array('page'=>'journal''user'=>$h->currentUser->id)); ?>">Journal: <?php echo $h->postsApproved(0'blog'); ?></a>
    Comments:
    PHP Code:
    <a href="<?php echo $h->url(array('page'=>'comments''user'=>$h->currentUser->id)); ?>">Comments: <?php echo $h->countUserComments(); ?></a>
    There's no built in function for counting votes, so you'd have to query the database if you want that.

  3. #3
    Junior Member
    Join Date
    Aug 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you so much!

  4. #4
    Junior Member
    Join Date
    Aug 2010
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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.

  5. #5
    Former lead dev Nick's Avatar
    Join Date
    Jun 2009
    Location
    Kakamigahara, Japan
    Posts
    2,915
    Blog Entries
    88
    Thanks
    519
    Thanked 846 Times in 551 Posts

    Default

    Quote Originally Posted by Patrik View Post
    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?
    You can already see other users' posts from their profiles, under "All Posts".

    Quote Originally Posted by Patrik View Post
    One more, unrelated, question: Can I display the date a user joined the site?
    I don't see why not. The user_date field in the users table holds that information.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. RSS Show 1.0
    By Nick in forum Plugin Downloads
    Replies: 8
    Last Post: 06-09-2012, 02:59 PM
  2. Can User Add her won Avatar in Profile??
    By Tony in forum How-To and Troubleshooting
    Replies: 12
    Last Post: 11-08-2010, 02:04 AM
  3. No items displaying in Post Comments, User Manager
    By pitamatein in forum How-To and Troubleshooting
    Replies: 5
    Last Post: 05-08-2010, 07:14 AM
  4. Replies: 0
    Last Post: 04-03-2010, 07:17 AM
  5. Ordering posts by number of votes
    By alfbrand in forum How-To and Troubleshooting
    Replies: 4
    Last Post: 03-24-2010, 05:41 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •