MyBB Ideas

The MyBB Ideas site allows users to suggest new features and changes in MyBB and the MyBB Group to easily review them to decide what direction MyBB should head in. Search existing ideas.

No of posts today on profile page.

46 votes

Submitted by MrD., 26th February 2007, 1:47:20 AM

Add xx posts today on your profile page along with:
481 (1.78 posts per day | 0.5 percent of total posts)

Something like:
481 (1.78 posts per day | 0.5 percent of total posts | 14 posts today)

Edit
Would changing the word "percent" to a % sign also be usefull?

481 (1.78 posts per day | 0.5% of total posts | 14 posts today)

5 Comments

  1. I think a whole load of personal stats should be put in, maybe like your rank by number of posts and threads? Say #12 out of 130 for total posts or something.

    DrPoodle, 26th February 2007, 3:28:54 AM
  2. By zaher1988:

    http://community.mybboard.net/showthread.php?tid=16591

    ====================================

    Open member.php

    find

    PHP Code:
    eval("\$profile = \"".$templates->get("member_profile")."\";");

    Above it add
    PHP Code:
    $mostviewed = '';
    $query = $db->query("SELECT * FROM ".TABLE_PREFIX."threads WHERE uid='".$memprofile['uid']."' AND visible='1' ORDER by views DESC LIMIT 0,10");
    while($viewedthreads = $db->fetch_array($query))
    {
    $mostviewed .= "<a href=\"showthread.php?tid=".$viewedthreads['tid']."\">".$viewedthreads['subject']."</a><br />";
    }

    Now in the member_profile template put the following anywhere

    Code:
    <br /><table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" width="100%" class="tborder">
    <tr>
    <td colspan="2" class="thead"><strong>Most viewed threads by user</strong></td>
    </tr>
    <tr>
    <td class="trow1">
    {$mostviewed}
    </td>
    </tr>
    </table>

    =======================================

    What you have to do is change the query to todays date. I like this idea and i think the profile should be improved by adding features like this.

    Tabo, 26th February 2007, 4:35:30 PM
  3. yes but i think this should be a Feature not a mod

    crsoft, 27th February 2007, 10:56:08 AM
  4. i would like to see the option in the admin to choose what to show on profiles and not.

    this could include stats, custom fields etc.

    tyros8000, 1st March 2007, 3:26:39 PM
  5. I like this.

    DennisTT, 11th March 2007, 10:50:46 PM

Post a Comment

Before you can post a comment you must be a registered member of the MyBB Community Forums.

If you already have an account, log-in to it to post a comment or if you don't register a new account.