vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Members who have visited today (with last 24 hours option). (https://vborg.vbsupport.ru/showthread.php?t=71533)

lefthome 03-18-2005 11:59 AM

Quote:

Originally Posted by Paul M
Yes, I understood what you want, but this hack cannot do that (nor will it be changed).

Thanks anyway. Like I said the hack is very nice.

sim tech 03-19-2005 05:51 AM

Installed nicely on 3.0.7... took about 3 minutes.

I noticed in my index.php I had also installed the:
"Members who have posted today" hack... you must be the same "Paul" that created that impressive one as well? My users loved that one, so I'm sure they'll be just as impressed with this latest one.

One question though (and I apologize for this) but I am a php noob and I've tried several things & all failed:

On both mods, The string:
PHP Code:

WHERE lastactivity " .$cutoff. " ORDER BY username" ); 

What the heck is the correct word to use (in place of username) if I want the names to be sorted by what time they logged in, instead of alphabetically?

Thanks-

sim tech 03-20-2005 03:42 AM

I think I may have a clue as to what the one poster was talking about as far as it not working.

Maybe he has both of your mods just like me. I found that if the
Total members that have posted today
and the
Total users that have visited today

had both of their time set to reset at midnight (not rolling 24 hours) then one of them would not work, typically the Total users that have visited today one. ( Is this because of where it's placed in reference to the other?

So I changed one to show the rolling 24 hours, and the other was just on regular time, and they both started working.

At least that's how it appeared on this end.
:alien:

PHP Code:


// ############### Paul M - Who has visited today v1.40 #################

require_once('./includes/functions_misc.php');
$now TIMENOW intval($vboptions['hourdif']);
//$cutoff = vbmktime(0, 0, 0, date('m', $now), date('d', $now), date('Y', $now));
$cutoff $now 86400 ;  // ## Uncomment this line if you want a rolling 24 hours display ## //
$todaysusers $DB_site->query("SELECT userid, lastactivity, options, username, opentag, closetag
FROM " 
TABLE_PREFIX "user as user
LEFT JOIN " 
TABLE_PREFIX "usergroup as usergroup ON(user.usergroupid = usergroup.usergroupid)
WHERE lastactivity > " 
.$cutoff" ORDER BY username" ); 

$totaltoday 0;
while (
$today $DB_site->fetch_array($todaysusers))
{
    
$today[visible] = ;
    
$totaltoday += 1;
    if (
$today[options] & $_USEROPTIONS[invisible]) 
    {
        
$today[visible] = ;
        if ((
$permissions['genericpermissions'] & CANSEEHIDDEN) OR $today['userid'] == $bbuserinfo['userid'])
        {
            
$today[visible] = ;
        }
    }
    if (
$today[visible]) 
    {
           
$wrdate vbdate($vboptions['timeformat'], $today['lastactivity']);
        
$whotoday .= "<a href='member.php?u=$today[userid]' title='$wrdate' >";
        if (
$today[visible] == 2
        {
            
$whotoday .= $today['opentag'].$today[username].$today['closetag']."</a>*, ";
        }
        else 
        {
            
$whotoday .= $today['opentag'].$today[username].$today['closetag']."</a>, ";
        }
    }
}
if (
$whotoday)
{
    
$whotoday substr($whotoday0strlen($whotoday)-2);
}

// ############# End of Who has visited today ###############



// ############# Paul Marsden - Who has posted today v1.40 ###############
$now TIMENOW ;
require_once(
'./includes/functions_misc.php');
$cutoff vbmktime(000vbdate('m'$nowfalsefalse), vbdate('d'$nowfalsefalse), vbdate('Y'$nowfalsefalse));
//$cutoff = $now - 86400 ;  // Uncomment this line if you want a rolling last 24 hours.
$todaysposters $DB_site->query("SELECT userid, lastpost, options, username, opentag, closetag
FROM " 
TABLE_PREFIX "user as user
LEFT JOIN " 
TABLE_PREFIX "usergroup as usergroup ON(user.usergroupid = usergroup.usergroupid)
WHERE lastpost > " 
.$cutoff" ORDER BY username" ); 

unset (
$posttoday);
$posterstoday 0;
while (
$today $DB_site->fetch_array($todaysposters))
{
    
$today[visible] = ;
    
$posterstoday += 1;
    if (
$today[options] & $_USEROPTIONS[invisible]) 
    {
        
$today[visible] = ;
        if ((
$permissions['genericpermissions'] & CANSEEHIDDEN) OR $today['userid'] == $bbuserinfo['userid'])
        {
            
$today[visible] = ;
        }
    }
    if (
$today[visible]) 
    {
               
$wrdate vbdate($vboptions['timeformat'], $today['lastpost']);
        
$posttoday .= "<a href='search.php?do=finduser&u=$today[userid]' title='$wrdate' >";
        if (
$today[visible] == 2
        {
            
$posttoday .= $today['opentag'].$today[username].$today['closetag']."</a>*, ";
        }
        else 
        {
            
$posttoday .= $today['opentag'].$today[username].$today['closetag']."</a>, ";
        }
    }
}
if (
$posttoday)
{
    
$posttoday substr($posttoday0strlen($posttoday)-2);
}
// ############# End of Who has posted today ############### 


Paul M 03-26-2005 12:51 PM

Quote:

Originally Posted by sim tech
On both mods, The string:
PHP Code:

WHERE lastactivity " .$cutoff. " ORDER BY username" ); 

What the heck is the correct word to use (in place of username) if I want the names to be sorted by what time they logged in, instead of alphabetically?

Thanks-

You need to use 'lastvisit' - however, you also need to add this field to the SELECT statement before it will work.

Paul M 03-26-2005 12:52 PM

Quote:

Originally Posted by sim tech
Maybe he has both of your mods just like me. I found that if the
Total members that have posted today
and the
Total users that have visited today

had both of their time set to reset at midnight (not rolling 24 hours) then one of them would not work, typically the Total users that have visited today one. ( Is this because of where it's placed in reference to the other?

So I changed one to show the rolling 24 hours, and the other was just on regular time, and they both started working.

At least that's how it appeared on this end.

There is no reason both should not work, they do here. :) I did make a small change to the way the midnight cutoff is calculated a while back - you need v1.40 of the 'last visited' and v1.50 of the 'last posted' to pickup this change.

Julie 03-28-2005 11:53 AM

Hm, I didn't reply to this one!

Lol, just have to say I did one NEWBIE'ish thing on this one... I couldn't understand why it didn't work, but.. lol, I had forgotten to upload the index.php ... *bangs head in keyboard*

But, great hack! Works like a charm (as soon as you upload the index.php :P) Thanks! :)

sim tech 03-28-2005 02:56 PM

Quote:

Originally Posted by Paul M
You need to use 'lastvisit' - however, you also need to add this field to the SELECT statement before it will work.


Thank you sir. The SELECT part is what I got burned on!

trilOByte 03-31-2005 07:52 PM

Hi Paul, great hack - quick question though. I also have (had) your who's in chat for flashchat installed, but intstalling this munged the if conditional in the forumhome template. Any idea how to amend the template to allow both to work?

Thanks.

Paul M 03-31-2005 08:43 PM

Not sure what you mean - but I have both installed - this is what the relevant section looks like;

Code:

<if condition="$show['loggedinusers']">

<!-- Todays active users -->
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_todayusers')"><img id="collapseimg_forumhome_todayusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_todayusers].gif" alt="" border="0" /></a>
                        Total users that have visited today: $totaltoday
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_todayusers" style="$vbcollapse[collapseobj_forumhome_todayusers]">
        <tr>
                <td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="Users online today" border="0" /></td>
                <td class="alt1" width="100%"><div class="smallfont">$whotoday</div></td>
        </tr>
</tbody>
<!-- Todays active users -->

<!-- who's in flashchat -->
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_chatusers')"><img id="collapseimg_forumhome_chatusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_chatusers].gif" alt="" border="0" /></a>
                        Members currently in the Chat: $totalchatters
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_chatusers" style="$vbcollapse[collapseobj_forumhome_chatusers]">
        <tr>
                <td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="Users online today" border="0" /></td>
                <td class="alt1" width="100%"><div class="smallfont">$chatters</div></td>
        </tr>
</tbody>
<!-- end who's in flashchat -->

<!-- logged-in users -->
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
                        <a href="online.php?$session[sessionurl]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
        <tr>
                <td class="alt2"><a href="online.php?$session[sessionurl]"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
                <td class="alt1" width="100%">
                        <div class="smallfont">
                                <div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
                                <div>$activeusers</div>
                        </div>
                </td>
        </tr>
</tbody>
<!-- end logged-in users -->

HTH.

trilOByte 03-31-2005 09:08 PM

My own fault, I have a stray closing tag for a conditional and couldn't see what was going on. Thanks for your help. Both additions are great.

/me clicks install.

paratek 03-31-2005 11:41 PM

Hey Paul

The Hack installed no problem, only thing that does not display for me is the last online time when hoovering over the username. Any idea where i should look?

**Update** It works fine in Firefox, it is IE6 that won't display it.

bigwest 04-03-2005 01:33 AM

Works perfect and SUPER simple to install. I use the vBadvanced module of this hack. PERFECT - Thank you!

Paul M 04-03-2005 09:56 AM

Quote:

Originally Posted by paratek
Hey Paul

The Hack installed no problem, only thing that does not display for me is the last online time when hoovering over the username. Any idea where i should look?

**Update** It works fine in Firefox, it is IE6 that won't display it.

Please provide a link to your site.

Samira 04-06-2005 05:20 AM

Installed and working great. Thanks!

I did make a small mod and put it at the bottom of my forumhome, but I have the Who's Online up at the top so it would've taken up too much space. :)

khaleel 04-07-2005 02:14 PM

*installed*

T_Montana 04-07-2005 02:51 PM

great hack.......nice and easy!!!!

one problem though.....i can see this fine under my username (head admin) but nobody else can.I logged on a test username and they were right......can't see it.Anyway to change this?

Paul M 04-07-2005 04:41 PM

There is no such ability in the code, so it must be something else you have added to your FORUMHOME template.

T_Montana 04-07-2005 05:59 PM

thanks for fast reply.....maybe you can take a look?

Code:

<head>
        <!-- no cache headers -->
        <meta http-equiv="Pragma" content="no-cache" />
        <meta http-equiv="Expires" content="-1" />
        <meta http-equiv="Cache-Control" content="no-cache" />
        <!-- end no cache headers -->
        <title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
        $headinclude
</head>
<body>
$header
$navbar

<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
        <if condition="$show['guest']">
        <!-- guest welcome message -->
        <tr>
                <td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
        </tr>
        <tr>
                <td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
                        <phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]">$vbphrase[first_visit_message]</phrase>
                </td>
        </tr>
        <!-- / guest welcome message -->
        </if>
        <tr align="center">
          <td class="thead">&nbsp;</td>
          <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
          <td class="thead" width="175">$vbphrase[last_post]</td>
          <td class="thead">$vbphrase[threads]</td>
          <td class="thead">$vbphrase[posts]</td>
          <if condition="$vboptions['showmoderatorcolumn']">
          <td class="thead">$vbphrase[moderator]</td>
          </if>
        </tr>
</thead>
$forumbits
<tbody>
        <tr>
                <td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
                        <a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a>
                        &nbsp; &nbsp;
                        <a href="showgroups.php?$session[sessionurl]">$vbphrase[view_forum_leaders]</a>
                </strong></div></td>
        </tr>
</tbody>
</table>
<!-- /main -->

<br />
<br />

<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
        <tr>
                <td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
        </tr>
</thead>
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
                        <a href="online.php?$session[sessionurl]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
        <tr>
                <td class="alt2"><a href="online.php?$session[sessionurl]"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
                <td class="alt1" width="100%">
                        <div class="smallfont">
                                <div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
                                <div>$activeusers</div>
                        </div>
                </td>
        </tr>
</tbody>
<!-- end logged-in users -->

<!-- Todays active users -->
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_todayusers')"><img id="collapseimg_forumhome_todayusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_todayusers].gif" alt="" border="0" /></a>
                        Total users that have visited today: $totaltoday
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_todayusers" style="$vbcollapse[collapseobj_forumhome_todayusers]">
        <tr>
                <td class="alt2"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="Users online today" border="0" /></td>
                <td class="alt1" width="100%"><div class="smallfont">$whotoday</div></td>
        </tr>
</tbody>
<!-- Todays active users -->
</if>
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_stats')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_stats].gif" alt="" border="0" /></a>
                        <phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="$vbcollapse[collapseobj_forumhome_stats]">
        <tr>
                <td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" /></td>
                <td class="alt1" width="100%">
                <div class="smallfont">
                        <div>$vbphrase[threads]: $totalthreads, $vbphrase[posts]: $totalposts, $vbphrase[members]: $numbermembers</div>
                        <div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div>
                </div>
                </td>
        </tr>
</tbody>
<if condition="$show['birthdays']">
<!-- today's birthdays -->
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_birthdays')"><img id="collapseimg_forumhome_birthdays" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_birthdays].gif" alt="" border="0" /></a>
                        $vbphrase[todays_birthdays]
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_birthdays" style="$vbcollapse[collapseobj_forumhome_birthdays]">
        <tr>
                <td class="alt2"><a href="calendar.php?$session[sessionurl]do=getday&amp;day=$today&amp;sb=1"><img src="$stylevar[imgdir_misc]/birthday.gif" alt="$vbphrase[view_birthdays]" border="0" /></a></td>
                <td class="alt1" width="100%"><div class="smallfont">$birthdays</div></td>
        </tr>
</tbody>
<!-- end today's birthdays -->
</if>
<if condition="$show['upcomingevents']">
<tbody>
        <tr>
                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
                        <if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if>
                </td>
        </tr>
</tbody>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
        <tr>
                <td class="alt2"><a href="calendar.php?$session[sessionurl]"><img src="$stylevar[imgdir_misc]/calendar.gif" alt="$vbphrase[calendar]" border="0" /></a></td>
                <td class="alt1" width="100%"><div class="smallfont">$upcomingevents</div></td>
        </tr>
</tbody>
</if>
</table>
<br />
<!-- end what's going on box -->

<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
        <td>
                <table cellpadding="2" cellspacing="0" border="0">
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
                </tr>
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
                </tr>
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
                </tr>
                </table>
        </td>
        <if condition="!$show['guest']">
                <!-- member logout -->
                <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]"  onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
                <!-- end member logout -->
        </if>
</tr>
</table>
<!-- / icons and login code -->

$footer
</body>
</html>


Paul M 04-07-2005 08:53 PM

The only condition present is the <if condition="$show['loggedinusers']"> - this is standard in vB and disables the display if it's turned off in the ACP. I thought of that - but if you had this turned off then I don't see how admins could see it either, it should be disabled for everyone.

T_Montana 04-07-2005 09:13 PM

hmmm...i have no idea...lol

thanks for tryin to help though

Paul M 04-08-2005 07:11 AM

Do you have a link to your site, and a test login ?

AlexUK 04-08-2005 08:37 AM

Is it possible at all to have this hack show the users in the last 24 hours only in the admin panel?
I want to monitor what members are frequent visitors but keep in in my admin panel only.

Paul M 04-08-2005 08:58 AM

Quote:

Originally Posted by AlexUK
Is it possible at all to have this hack show the users in the last 24 hours only in the admin panel?

No, but you could add a condition to the display on the forumhome so it was only visible to usergroup 6 (the admin group).

Paul M 04-08-2005 06:45 PM

Quote:

Originally Posted by T_Montana
hmmm...i have no idea...lol

thanks for tryin to help though

Now our little PM exchange has fixed you, please click install. :)

Brandon Sheley 04-16-2005 02:42 AM

installs, worked fine took a whole 3 mins to edit..thank you for the mod, i looked over the other " whos online 24 hrs" mods but i like this one better :D

AndyA 04-16-2005 12:23 PM

Great mod and just what I was looking for.

Razasharp 04-16-2005 02:21 PM

Quote:

Originally Posted by Paul M
I had a look at this for you and it doesn't look like it's a quick and easy change, so I'm afraid you will have to take it as is, Sorry.

Hi Paul

Sorry to be a pain and I knwo people have asked this before but could you please look into this? Please please please? (not just primary usergroup colours to display).

If it really isn't possible can you please let me know how I can 'undo' the SQL query;

ALTER TABLE user ADD INDEX (lastactivity)

(as Im sorry to say I'l have to uninstall it :-( )
Sorry to be a pain!

Paul M 04-16-2005 02:29 PM

Quote:

Originally Posted by Razasharp
Hi Paul

Sorry to be a pain and I knwo people have asked this before but could you please look into this? Please please please? (not just primary usergroup colours to display).

If it really isn't possible can you please let me know how I can 'undo' the SQL query;

ALTER TABLE user ADD INDEX (lastactivity)

(as Im sorry to say I'l have to uninstall it :-( )
Sorry to be a pain!

It's not rocket science - simply use "ALTER TABLE user DROP INDEX (lastactivity)"

More to the point - Why do you need to uninstall it ??

Razasharp 04-16-2005 02:57 PM

Hi Paul

Sorry yeah I just wanted to double check!

The reason I need to uninstall it (and use a different hack) is because I need the colours to show for the chosen usergroup not just the primary usergroup - I was hoping you might be able to sort this out for us as there seems to be quite a few people requesting it... please would you? :-)

Paul M 04-16-2005 03:29 PM

Quote:

Originally Posted by Razasharp
Hi Paul

Sorry yeah I just wanted to double check!

The reason I need to uninstall it (and use a different hack) is because I need the colours to show for the chosen usergroup not just the primary usergroup - I was hoping you might be able to sort this out for us as there seems to be quite a few people requesting it... please would you? :-)

Oh, is that all :) I looked at that ages ago and built a version that does it, but I never released it as no one has asked about it for ages.

Razasharp 04-16-2005 03:36 PM

Pleaaaaaaaaaaaaaaaaaaase may I have it?? :-)

Well fancy hiding that from us lol

Paul M 04-16-2005 03:42 PM

Quote:

Originally Posted by Razasharp
Pleaaaaaaaaaaaaaaaaaaase may I have it?? :-)

Sure, I'll upload it later, I don't have it handy atm. :)

Razasharp 04-16-2005 03:42 PM

Thanks Paul! You're a star :-)

Btw - is it still as effiecient as the old version? Ie won't increase load in anyway? (sorry to b a nube!)

Paul M 04-16-2005 03:47 PM

Quote:

Originally Posted by Razasharp
Btw - is it still as effiecient as the old version?

Yes.

Razasharp 04-16-2005 03:48 PM

Excellent!!!

Look forward to installing it later :-)

Thanks again.

Paul M 04-16-2005 09:12 PM

This hack has been updated to version 2.00 - the main change is to display the user based on the their selected display usergroup (rather than always use the primary usergroup, as previous versions did). :)

Razasharp 04-16-2005 10:00 PM

Installed!

Works like a charm!!

Thanks Paul :-)

Paul M 04-16-2005 10:08 PM

Quote:

Originally Posted by Razasharp
Installed!

Works like a charm!!

Thanks Paul :-)

Good, perhaps you'd like to click on "install" now :)

Razasharp 04-16-2005 10:16 PM

Done!

(mind you I thought I had 1st time round :-/ sorry... nube alert!)

Monica05 04-19-2005 12:05 AM

exactly what I was looking for!

Thanks!


All times are GMT. The time now is 09:56 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01798 seconds
  • Memory Usage 1,950KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (3)bbcode_php_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete