This will add a link to the UserCP that tells every user what his/her reffering link is so that they can invite friends. Later version will include ability to send the e-mail from the forum itself. This hack is very simple.
Yeah... if you're referring to the one at https://vborg.vbsupport.ru/showthread.php?t=90849, this is for a different version of vbulletin. This hack I made completely by myself, I didn't use anybody else's code, and as far as I know, nothing has been made like this for vbulletin 3.5. Correct me if I'm wrong...
That other one is for 3.0.7, isn't it? This one is for RC2 & RC3...
They both accomplish the same thing and I'm 99% that they'll both work in either version. This one involves less work, as there are no phrase additions, only a template edit.
Yeah... if you're referring to the one at https://vborg.vbsupport.ru/showthread.php?t=90849, this is for a different version of vbulletin. This hack I made completely by myself, I didn't use anybody else's code, and as far as I know, nothing has been made like this for vbulletin 3.5. Correct me if I'm wrong...
Oh cool.
Hey, I'm not sure if this would would be just a template modification or take a new plugin, but it's just one of those ideas that pops into my head. Would it be easy to have group promotions based on referrals?
That way, you could give entice users to referr people to get custom titles or something.
Oh cool.
Hey, I'm not sure if this would would be just a template modification or take a new plugin, but it's just one of those ideas that pops into my head. Would it be easy to have group promotions based on referrals?
That way, you could give entice users to referr people to get custom titles or something.
Sure. You could just do some conditionals in the template and have it call phrases you set up for each usergroup. Is that what you meant?
there was a bit of a conflict in this template mod whereby the collapse button was conflicting with the collapse button for subscribed threads preventing that one from working...(both buttuns would collapse the referrals bit)
allso where the link is and you have www.yourforum.com/forum this could be reaplaced with $vboptions[bburl]
Code:
<!-- ############## START REFERRER BY ADAM GESSEL #################### -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="7">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('usercp_reflink')"><img id="collapseimg_usercp_reflink" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_usercp_reflink].gif" alt="" border="0" /></a>
<a href="register.php?referrerid=$bbuserinfo[userid]">Refer Friends URL</a><span class="normal"></span>
</td>
</tr>
</thead>
<tbody id="collapseobj_usercp_reflink" style="$vbcollapse[collapseobj_usercp_reflink]">
<tr>
<td class="alt1" align="center" colspan="7"><b>Invite your friends to join our forum by linking them here via the following link:</b> <br /><a href="register.php?referrerid=$bbuserinfo[userid]">$vboptions[bburl]/register.php?referrerid=$bbuserinfo[userid]</a></td>
</tr>
</tbody>
</table>
<br />
<!-- ############## END REFERRER BY ADAM GESSEL #################### -->