Dec 26, 2007, 06:08 AM
Dec 26, 2007, 07:46 AM
Is that a self-made page ? Or where did you get it, cause that page aint MyBB Default.
Dec 26, 2007, 12:43 PM
I had never seen this page, I have just noticed now
Dec 26, 2007, 01:03 PM
Have a link to it ?
Edit:
Seems to be a page that comes along with the 'UserGroupsLegend' ? It probably only shows the members who that certain group as their 'usergroup', if some members have that group as an additional group they won't be shown. You need to contact the pluginauthor to 'fix' that.
Edit:
Seems to be a page that comes along with the 'UserGroupsLegend' ? It probably only shows the members who that certain group as their 'usergroup', if some members have that group as an additional group they won't be shown. You need to contact the pluginauthor to 'fix' that.
Dec 28, 2007, 09:27 AM
Problem solved Partially by increasing colspan = 9 in memberlist template
Dec 28, 2007, 12:14 PM
Problem solved Partially in groups_page template
<tr>
<td class="thead" style="text-align: center;" colspan="9"><strong>Usergroup - {$group['title']}</strong></td>
</tr>
I do not understand what they are recent numbers:
link forum:
http://www.skinnermania.netsons.org
<tr>
<td class="thead" style="text-align: center;" colspan="9"><strong>Usergroup - {$group['title']}</strong></td>
</tr>
I do not understand what they are recent numbers:
link forum:
http://www.skinnermania.netsons.org
Dec 28, 2007, 04:30 PM
resolved thnks "LeX-"
Open memberlist.php
Find
PHP Code:
eval("\$member .= \"".$templates->get("memberlist_row")."\";");
Add above
PHP Code:
if($users['lastpost'] != 0)
{
$users['lastpost'] = my_date($mybb->settings['timeformat'], $users['lastpost'])." ".my_date($mybb->settings['dateformat'], $users['lastpost']);
}
else
{
$users['lastpost'] = "";
}
if($users['lastactive'] != 0)
{
$users['lastactive'] = my_date($mybb->settings['timeformat'], $users['lastactive'])." ".my_date($mybb->settings['dateformat'], $users['lastactive']);
}
else
{
$users['lastactive'] = "";
}
Open memberlist.php
Find
PHP Code:
eval("\$member .= \"".$templates->get("memberlist_row")."\";");
Add above
PHP Code:
if($users['lastpost'] != 0)
{
$users['lastpost'] = my_date($mybb->settings['timeformat'], $users['lastpost'])." ".my_date($mybb->settings['dateformat'], $users['lastpost']);
}
else
{
$users['lastpost'] = "";
}
if($users['lastactive'] != 0)
{
$users['lastactive'] = my_date($mybb->settings['timeformat'], $users['lastactive'])." ".my_date($mybb->settings['dateformat'], $users['lastactive']);
}
else
{
$users['lastactive'] = "";
}
Dec 31, 2007, 08:47 AM
Thank you....
Jan 21, 2008, 03:41 PM
Thanks you too..
![[Image: 71ek4ur.jpg]](http://i11.tinypic.com/71ek4ur.jpg)
![[Image: 7y2gwmv.jpg]](http://i5.tinypic.com/7y2gwmv.jpg)
