MyBB Community Forums

Full Version: How Can I Show Moderator Reg Date on showteam.php ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I want to show admin reg date and posts on showteam.php. I tried {$user['regdate']} and {$user['posts']} but this methods not working.
You can manually add the date if the page is custom, is the page custom? If not and you want one made I can make you one for a price.
Open showteam.php file.

Search:

$query = $db->simple_select("users", "uid, username,

Replace with:

$query = $db->simple_select("users", "uid, username, postnum, regdate,

Search:

$user['profilelink'] = get_profile_link($user['uid']);

Add after:

$user['postnum'] = my_number_format($user['postnum']);
$user['regdate'] = my_date($mybb->settings['regdateformat'], $user['regdate']);

Use in the template showteam_usergroup_user:
  • {$user['postnum']} - to show the posts of staffers
  • {$user['regdate']} - to show the registration date of staffers
(2015-05-17, 10:25 PM)Mipher Wrote: [ -> ]Open showteam.php file.

Search:

$query = $db->simple_select("users", "uid, username,

Replace with:

$query = $db->simple_select("users", "uid, username, postnum, regdate,

Search:

$user['profilelink'] = get_profile_link($user['uid']);

Add after:

$user['postnum'] = my_number_format($user['postnum']);
$user['regdate'] = my_date($mybb->settings['regdateformat'], $user['regdate']);

Use in the template showteam_usergroup_user:
  • {$user['postnum']} - to show the posts of staffers
  • {$user['regdate']} - to show the registration date of staffers

Thanks man, i will try.