Quote:
Then I sloud probably rush a bit more with it I guess
|
Yes, you should
Quote:
Oh, I just saw that! It sounds nice!
|
Ok, here's what you gotta do.
Somewhere in your file after inclusion of global.php put this:
PHP Code:
if (isset($vbulletin->userinfo['invites']))
{ // Psionic Vision's Invite Hack Installed, Adjust Template Settings
if ($canmanageinvites AND ($vbulletin->userinfo['invites'] > 0 OR !$vbulletin->options['invites_reg_only_by_invite']))
{
$show['invites_link'] = 'c_psi_inv_link';
$show['invites_left'] = ($vbulletin->options['invites_reg_only_by_invite'] ? true : false);
}
else
{
$show['invites_link'] = false;
$show['invites_left'] = false;
}
}
else
{ // Psionic Vision's Invite Hack Not Installed, use e-steki link
$show['invites_link'] = 'c_def_link';
$show['invites_left'] = false;
}
And then, in template:
HTML Code:
<if condition="$show['invites_link'] == 'c_def_link'">
YOUR CURRENT HTML CODE
<else />
<if condition="$show['invites_link'] == 'c_psi_inv_link'">
<!-- ############## INVITES LINK ############## -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase[invites_issue_new_invite] <if condition="$show['invites_left']"><phrase 1="$bbuserinfo[invites]">($vbphrase[invites_x_left])</phrase></if></td>
</tr>
<tr>
<td class="alt1"><span class="smallfont"><a href="invites.php?$session[sessionurl]">$vbphrase[invites_click_here_to_invite_new_users]</a></span></td>
</tr>
</table>
<br />
<!-- ############## END INVITES LINK ############## -->
</if>
</if>
P.S. Just noticed - nice threadid

I put that ID in my hack so that it is linked to yours (listed in add-ons in your top post). If you put my ID in, you hack will be listed on my page.
P.P.S. If you are confused, don't worry about variables in my code. They are defined in global_start by one of the plugins that make up the Invite System.