The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Invitation System vB 3.7 Gold Details »» | |||||||||||||||||||||||||
Invitation System by HASANN This Product brought to you by www.vBulletin-TR.Com Comments, suggestions, translations, bugs, etc... are very welcome! Support is only given to people who have clicked INSTALL. DESCRIPTION ->What does it? > Allow users send invites to everybody. Go For Invitation Hack vBulletin Version 3.5 and 3.6.series DEMO you can test it at here http://www.vbulletin-tr.com/forum/pr...ation&langid=1 FEATURES
Install: ->Just Import product_invitation.xml via Product Manager ->Do template edits: In USERCP_SHELL Template Find this Code HTML Code:
<if condition="$show['profilepiclink']"> <tr><td class="$navclass[profilepic]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a></td></tr> </if> HTML Code:
<if condition="$vbulletin->options['invitation_usercp_link']"> <tr> <td class="$navclass[invitation]" nowrap="nowrap"> <a class="smallfont" href="profile.php?$session[sessionurl]do=invitation">$vbphrase[invitation]</a> </td> </tr> </if> Supporters / CoAuthors Show Your Support
|
Благодарность от: | ||
SaN-DeeP |
Comments |
#232
|
|||
|
|||
Quote:
Just look for the input tag in your register template (search for id="referrerfield") On my site I have completly removed the referrid input field and instead using an hidden input tag to pass on the referrer. I'll look into including this as an auto template change for one of the next versions. |
#233
|
|||
|
|||
I like this invite system, Works great. few miss spelled words, but it is an easy fix for that. All in All it is working fine and I hope you continue putting out great product.
Suggestion: 1. Maybe adding MSN, yahoo and aol Contact Grabber. 2. Maybe you should take over visionscripts. they had great product but he had to let it all go and now he is not planning to upgrade his product. |
#234
|
|||
|
|||
Already on the to-do list and will be included in one of the next versions.
But before that I need to code some stuff so that new entries vom vbBlog show up under New Posts. That's currently more important for my site. |
#235
|
||||
|
||||
just a screen it shows to you how it goes :S |
#236
|
||||
|
||||
Beauts Hasann
This one is steam rolling down the lanes... I took a peek at your code and it's interesting... Im taking notes... Keep the ball rolling... |
#237
|
|||
|
|||
Nice, I see you've added multiple invitees, and the ability to attach a note.
It's looking beautiful so far. You guys really do listen to our suggestions. Thank you! |
#238
|
|||
|
|||
When should we expect the next update?
No rush, just curious. And will the next one have the contact grabbers? |
#239
|
|||
|
|||
With this mod currently, can you tell who the referrer was when a new member signs up from an invitation? Thanks.
|
#240
|
|||
|
|||
A tip for your mod...
If you replace : Code:
if ($vbulletin->options['invitation_automatic_link_creation'] == 1) { $template_hook['navbar_buttons_left'] .= '<td class="vbmenu_control"><a href="profile.php?'.$session['sessionurl'].'do=invitation">'.$vbphrase['invitation'].'</a></td>'; } if ($vbulletin->options['invitation_automatic_link_creation'] == 2) { $template_hook['navbar_quick_links_menu_pos1'] .= '<tr><td class="vbmenu_option"><a href="profile.php?'.$session['sessionurl'].'do=invitation">'.$vbphrase['invitation'].'</a></td></tr>'; } Code:
if ($vbulletin->options['invitation_automatic_link_creation'] == 1) { if ($canuseinvitation) { $template_hook['navbar_buttons_left'] .= '<td class="vbmenu_control"><a href="profile.php?'.$session['sessionurl'].'do=invitation">'.$vbphrase['invitation'].'</a></td>'; } } if ($vbulletin->options['invitation_automatic_link_creation'] == 2) { if ($canuseinvitation) { $template_hook['navbar_quick_links_menu_pos1'] .= '<tr><td class="vbmenu_option"><a href="profile.php?'.$session['sessionurl'].'do=invitation">'.$vbphrase['invitation'].'</a></td></tr>'; } } |
#241
|
||||
|
||||
Actually this will work better, I think:
Code:
if ($vbulletin->options['invitation_automatic_link_creation'] == 1 AND $canuseinvitation) { $template_hook['navbar_buttons_left'] .= '<td class="vbmenu_control"><a href="profile.php?'.$session['sessionurl'].'do=invitation">'.$vbphrase['invitation'].'</a></td>'; } if ($vbulletin->options['invitation_automatic_link_creation'] == 2 AND $canuseinvitation) { $template_hook['navbar_quick_links_menu_pos1'] .= '<tr><td class="vbmenu_option"><a href="profile.php?'.$session['sessionurl'].'do=invitation">'.$vbphrase['invitation'].'</a></td></tr>'; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|