View Full Version : Referral ID in User CP
ResaleBroker
06-22-2005, 10:00 PM
This simple modification will add a content box in the User CP displaying the user's "Referral Count", "Referral Link" and a "Referral Message" that can can be customized in the Phrase Manager.
For 3.5.x or higher simply install the product.
For 3.0.x follow the instructions below:
1) Modify USERCP template
Admin CP >> Style Manager >> Edit Templates >> User control Panel Templates >> USERCP
Find:
<!-- ############## SUBSCRIBED THREADS ############## -->
Above that add:
<!-- ############### REFERRALS ############### -->
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center"
style="background-color:white">
<thead>
<tr>
<td class="tcat">
<a style="float:right" href="#top" onclick="return toggle_collapse('referral')"><img id="collapseimg_referral" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_my_table].gif" alt="" border="0" /></a>
$vboptions[bbtitle] $vbphrase[referrals]: <span class="normal">($referrals)</span>
</td>
</tr>
</thead>
<tbody id="collapseobj_referral" style="">
<tr>
<td class="page" align="left" width="100%">
<phrase 1="$vboptions[bbtitle]" 2="member.php?$session[sessionurl]do=getinfo&userid=$bbuserinfo[userid]" 3="$vbphrase[profile]" 4="$bbuserinfo[username]" 5="$vboptions[bburl]/index.php?referrerid=$bbuserinfo[userid]" >$vbphrase[refid_usercp]</phrase>
</td>
</tr>
</tbody>
</table>
<br />
<!-- ############# END REFERRALS ############# -->
2) Add the Required Phrase
Admin CP >> Language & Phrases >> Phrase Manager >> Add New Phrase
Phrase Type:Global
Varname:refid_usercp
Text:<p>Please help us spread the word about "{1}." When referring others to the community you can use the link below which includes your unique referral ID.</p>
<p>Each time someone follows this link to {1} and registers as a new member, your referral count will be incremented by one.</p>
<p>Please be courteous when promoting {1} by not spamming other web sites with your referral link just to gain referrals.</p>
<fieldset id="referrallink"><legend>Referral Link for {4} </legend><a href="{5}">{5}</a></fieldset>
3) Modify usercp.php file [VB versions 3.0.x]
Open usercp.php and Find:
eval('$HTML = "' . fetch_template('USERCP') . '";');
Above that add:
// REFERRALS
$refcount = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid = '".$bbuserinfo['userid']."'");
$referrals = vb_number_format($refcount['count']);
4) That's it! You're Done! :)
*A special thanks to Noppid for helping out and getting the referral counts to appear in the UserCP for 3.0.x and 3.5.x versions. ;)
*A special thanks to Boofo for packaging this product for 3.5.x ;)
Zachery
06-22-2005, 10:54 PM
Should really be in a phrase if we want to get technical :)
boo.3
06-22-2005, 11:28 PM
thx
/me clicks install
Marco van Herwaarden
06-23-2005, 04:00 AM
Thanks for sharing this with us. Could you please also provide the instructions in a (zipped) textfile. This makes it easier for those who installed it to use for future vB upgrades.
GetGamer.com
06-23-2005, 04:07 AM
I agree with Zachery regarding the use of phrases. I'm in the midst of adding a second language to one of my sites. Anyone have some pointers on how-to modify this mod to use phrases?
ResaleBroker
06-23-2005, 04:28 AM
Thanks for sharing this with us. Could you please also provide the instructions in a (zipped) textfile. This makes it easier for those who installed it to use for future vB upgrades.Sure, no problem. ;)
Marco van Herwaarden
06-23-2005, 06:31 AM
Thank you for the fast reaction.
ResaleBroker
06-23-2005, 07:29 AM
Thank you for the fast reaction.Happy to be of help. :)
Snake
06-23-2005, 09:28 AM
Should really be in a phrase if we want to get technical :)
I agree with you. That would be alot better. But thanks for the hack. :)
bigcurt
06-23-2005, 10:33 AM
Yea,I love this but I would much rather have phrases..but eh, thanks alot either way ;).
ResaleBroker
06-23-2005, 03:58 PM
Should really be in a phrase if we want to get technical :)I'll work on putting it into a phrase today. ;)
bigcurt
06-23-2005, 04:40 PM
Oh great, thanks alot
ResaleBroker
06-24-2005, 03:33 AM
Ok, v1.1 is now available. ;)
Snake
06-24-2005, 03:10 PM
Can I have a full 100% screenshot please? That first screeny looks like a bit messed up.
ResaleBroker
06-24-2005, 04:34 PM
Can I have a full 100% screenshot please? That first screeny looks like a bit messed up.I've uploaded a new screenshot. ;)
bigcurt
06-24-2005, 07:17 PM
thanks a MILLION, installing now
/me installs
King Kovifor
06-24-2005, 07:18 PM
/me installed this hack...
Chris Etc
06-25-2005, 04:32 PM
Excellent idea, thank you.
ResaleBroker
06-28-2005, 04:06 PM
Excellent idea, thank you.Happy to be of help. :)
Borgs8472
07-04-2005, 07:38 PM
Thanks for this easy mod.
/me installed
MichaelJM13k
07-05-2005, 06:02 AM
Installed. Thanks man!
ResaleBroker
07-08-2005, 07:48 AM
My pleasure! ;)
Caveman2k2
07-11-2005, 04:44 PM
/me clicks install
ResaleBroker
07-13-2005, 02:00 PM
* Caveman2k2 clicks installThanks! :)
bi11i
07-19-2005, 12:14 AM
Hey, great job! This combined with the CMPS Banner Manager makes a great referral system which doesn't require too many edits (and zero code edits, i believe...)
http://www.vbadvanced.com/forum/showthread.php?t=1669&highlight=banner
King Kovifor
07-19-2005, 12:39 AM
Any way to make it so that the background isn't transparent?
bi11i
07-19-2005, 02:04 AM
I changed<td class="page" align="left" width="100%">
to<td class="alt1" align="left" width="100%">
In fact, I changed the top line and another to standardize it a bit...:<!-- ############### REFERRALS ############### -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat">
<a style="float:right" href="#top" onclick="return toggle_collapse('referral')"><img id="collapseimg_referral" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_my_table].gif" alt="" border="0" /></a>
$vboptions[bbtitle] $vbphrase[referrals]: <strong>$referrals</strong>
</td>
</tr>
</thead>
<tbody id="collapseobj_referral" style="">
<tr>
<td class="alt1" align="left" width="100%">
<phrase 1="$vboptions[bbtitle]" 2="member.php?$session[sessionurl]do=getinfo&userid=$bbuserinfo[userid]" 3="$vbphrase[profile]" 4="$bbuserinfo[username]" 5="$vboptions[bburl]/index.php?referrerid=$bbuserinfo[userid]" >$vbphrase[refid_usercp]</phrase>
</td>
</tr>
</tbody>
</table>
<br />
<!-- ############# END REFERRALS ############# -->but a fantastic mod, much appreciated!
ResaleBroker
07-19-2005, 08:45 PM
My pleasure! :)
noppid
08-10-2005, 10:31 PM
Nice work. :)
ResaleBroker
08-11-2005, 12:57 AM
Thank you for the positive feedback. :)
Boofo
08-11-2005, 01:15 AM
Works great on 3.5 RC 2, also. Good job! ;)
Snake
08-12-2005, 11:42 AM
I'm waiting for a 3.5 version of this great hack. :)
Boofo
08-12-2005, 11:48 AM
I'm waiting for a 3.5 version of this great hack. :)
Read the post above. ;)
Works as is. ;)
Snake
08-12-2005, 12:20 PM
Oh my bad. I'm kinda sleepy here. :p
Hoojie
08-12-2005, 02:37 PM
Thanks Jeff. Nice one & the very first thing anybody who asks "How can I promote my forum" should do.
* Hoojie installed
ResaleBroker
08-12-2005, 11:15 PM
Works great on 3.5 RC 2, also. Good job! ;)Thanks for the kind words. :)
GT2.0
08-22-2005, 09:50 PM
Thanks so much for this!! Good work indeed!
MillerLight
08-28-2005, 05:48 PM
Works Great on VB Ver 3.0.8.
How would I go about changing the displayed text to, "White"?
Great Work!
ResaleBroker
08-30-2005, 10:36 PM
How would I go about changing the displayed text to, "White"?
Admin Control Panel >> Style Manager >> All Style Options
<td>, <th>, <p>, <li> (Customized in this Style)
Font Color #FFFFFF
...and if you want to change the color of "Referral Link for (User X)"
<legend> (Customized in this Style)
Font Color #FFFFFF
forsakenseye
08-31-2005, 02:44 AM
very nice...thank you...installed
Coach_Guru
09-25-2005, 09:28 PM
Great!
Thanks ;)
gethinoakes
09-29-2005, 07:21 PM
Great mod, works perfect. Thanks :)
ResaleBroker
10-03-2005, 12:02 PM
I do appreciate the kind words. Thank you. :)
trancetopia
10-03-2005, 07:57 PM
This mod will be useful. Thanks
zendiver
12-07-2005, 01:13 AM
RB, everything seems to work but one thing and I also noticed it in your screen shot, <strong>$referrals</strong> doesn't show any referrals. It's just blank.
ResaleBroker
12-07-2005, 04:08 AM
RB, everything seems to work but one thing and I also noticed it in your screen shot, <strong>$referrals</strong> doesn't show any referrals. It's just blank.Crud, I didn't notice that. Thank you for pointing that out.
Hmmm... that data will need to be pulled from the database. To do this the usercp.php file will need to be hacked. I imagine the code would be similar to the "Referrals" script found in members.php. Writing a script for this is beyond my current abilities.
If another member would like to pitch in and provide a working "Referrals" script that would be great. Of course, credit will be given. Otherwise, I'll the best I could do is remove the referrence to referral count from the mod.
Any takers on the "Referral" script for the usercp.php file?
zendiver
12-07-2005, 01:45 PM
I am still not really sure why this doesn't work. $referrals is a global variable and used elsewhere in the MEMBERINFO template exactly as you have it. It works there. *shrugs*
noppid
12-07-2005, 04:03 PM
Here is my fix. (EDIT: This is for 3.5.x) I liked it so much, I just did it without checking the version. I'll post up the 3.0.7 fix too in a bit.
Add a hook at "usercp_complete".
// REFERRALS
$refcount = $db->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid = '".$vbulletin->userinfo['userid']."'");
$referrals = vb_number_format($refcount['count']);
Edit the phrase "refid_usercp".
<p>Please help us spread the word about "{1}". When referring others to the community you can use the link below which includes your unique referral ID.</p>
<p>Each time someone follows this link to {1} and registers as a new member, your referral count will be incremented by one. The number of referrals you have can be viewed in your <a href="{2}"><strong>{3}</strong></a> by other members and guests. You currently have <strong>{6}</strong> referrals.</p>
<p>Please be courteous when promoting {1} by not spamming other web sites with your referral link just to gain referrals.</p>
<fieldset id="referrallink"><legend>Referral Link for {4} </legend>{5}</fieldset>
Edit the template for this referal hack.
<!-- ############### REFERRALS ############### -->
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center"
style="background-color:white">
<thead>
<tr>
<td class="tcat">
<a style="float:right" href="#top" onclick="return toggle_collapse('referral')"><img id="collapseimg_referral" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_referral].gif" alt="" border="0" /></a>
$vboptions[bbtitle] $vbphrase[referrals]: <strong>$referrals</strong>
</td>
</tr>
</thead>
<tbody id="collapseobj_referral" style="$vbcollapse[collapseobj_referral]">
<tr>
<td class="alt1" align="left" width="100%">
<phrase 1="$vboptions[bbtitle]" 2="member.php?$session[sessionurl]do=getinfo&userid=$bbuserinfo[userid]" 3="$vbphrase[profile]" 4="$bbuserinfo[username]" 5="$vboptions[bburl]/index.php?referrerid=$bbuserinfo[userid]" 6="$referrals">$vbphrase[refid_usercp]</phrase>
</td>
</tr>
</tbody>
</table>
<br />
<!-- ############# END REFERRALS ############# -->
Thanks for a cool hack.
ResaleBroker
12-07-2005, 05:04 PM
A great big "Thank You" to Noppid for working out the hack that makes the number of referrals display properly in the UserCP. :up:
noppid
12-07-2005, 05:31 PM
A great big "Thank You" to Noppid for working out the hack that makes the number of referrals display properly in the UserCP. :up:
Glad to help. I take it you will post the 3.0.x fix I showed you since mine above was for 3.5.x? :rolleyes:
ResaleBroker
12-07-2005, 05:39 PM
Glad to help. I take it you will post the 3.0.x fix I showed you since mine above was for 3.5.x? :rolleyes:Yes, I have already revised the code in the original mod to reflect your changes. Thanks again! :)
zendiver
12-07-2005, 05:51 PM
You said to add a hook at 'user_complete'. Not sure where you mean to add it. Sorry for the stupidity.
noppid
12-07-2005, 05:54 PM
You said to add a hook at 'user_complete'. Not sure where you mean to add it. Sorry for the stupidity.
I mistakenly thought this was a vB 3.5 hack. You don't have hooks in vB 3.0.x which this hack is for.
The instructions to fix this hack on vB 3.0.x are in the hack description at the top of this thread.
zendiver
12-07-2005, 06:12 PM
So you can't use this in 3.5? Even if you go into and add a new hook?
zendiver
12-07-2005, 06:36 PM
Well, I answered my own question. I went ahead and went to Add new plugin, chose 'usercp_complete', referenced with the text "Referral Amount", copied/pasted the php code, and it worked like a charm. Thanks noppid and thanks for the hack RB.
noppid
12-07-2005, 06:39 PM
Well, I answered my own question. I went ahead and went to Add new plugin, chose 'usercp_complete', referenced with the text "Referral Amount", copied/pasted the php code, and it worked like a charm. Thanks noppid and thanks for the hack RB.
Ok, Great, glad it worked out. I got confused, again. :surprised:
zendiver
12-07-2005, 06:42 PM
So RB, now you can say that this actually works on vb 3.5.1 now, not just 3.0.7. :D
noppid
12-07-2005, 06:55 PM
So RB, now you can say that this actually works on vb 3.5.1 now, not just 3.0.7. :D
I have this packaged and ready to release as a vB 3.5 product when RB is ready. ;)
I have modified the phrase and USERCP Template add in code a bit as well. The box is still collaspable, but when collapsed, it still shows the referrer link for the member.
I also made the link just text. When the link was live, it was too easy to click and activate it while trying to copy and paste it.
zendiver
12-07-2005, 06:59 PM
Same here...all packaged and ready, but I modified my results to not have all that text. Just what you see in the screen capture that I already posted.
Thanks for the work on this, both of you.
Boofo
12-07-2005, 07:09 PM
I have this packaged and ready to release as a vB 3.5 product when RB is ready. ;)
I have modified the phrase and USERCP Template add in code a bit as well. The box is still collaspable, but when collapsed, it still shows the referrer link for the member.
I also made the link just text. When the link was live, it was too easy to click and activate it while trying to copy and paste it.
Could you please pm it to me, sir? ;)
ResaleBroker
12-07-2005, 09:44 PM
Ok, I've updated the instructions to include both the 3.0.x and 3.5.x versions.
I'll work on getting this packaged for release as a vB 3.5 product.
JeffreySmith
12-08-2005, 12:10 PM
HI,
I messed up big time. I wasnt paying to close attention and I modified the usercp.php even though I have 3.5.x, and published the changes, then I got an error message:
Parse error: parse error, unexpected '[' in /home/jeffsmit/public_html/forum/usercp.php(467) : eval()'d code on line 3
at the top of my usercp page on the forum.
I went back and looked over the directions and noticed I was only supposed to modify if I was using 3.0.x. So I erased the:
// REFERRALS
$refcount = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid = '".$bbuserinfo['userid']."'");
$referrals = vb_number_format($refcount['count']); [/CODE]
That I had previoulsy inserted. Then I republished, now I get the same error message at the top of my user cp.
This is lines: 461-474 as of right now:
// draw cp nav bar
construct_usercp_nav('usercp');
$frmjmpsel['usercp'] = 'class="fjsel" selected="selected"';
construct_forum_jump();
($hook = vBulletinHook::fetch_hook('usercp_complete')) ? eval($hook) : false;
eval('$HTML = "' . fetch_template('USERCP') . '";');
// build navbar
$navbits = construct_navbits(array('' => $vbphrase['user_control_panel']));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('USERCP_SHELL') . '");');
Does anyone know what I can do to fix this, I dont really even know what I am doing but I am trying to learn as I go. I goofed this time... HELP!
Thank You,
Jeff Smith
ResaleBroker
12-08-2005, 12:21 PM
Remove this line of code from the code you provided:
($hook = vBulletinHook::fetch_hook('usercp_complete')) ? eval($hook) : false;
JeffreySmith
12-08-2005, 12:29 PM
Remove this line of code from the code you provided:
($hook = vBulletinHook::fetch_hook('usercp_complete')) ? eval($hook) : false;
I owe you my first born son. It worked!
ResaleBroker
12-08-2005, 12:31 PM
I owe you my first born son. It worked!I'm happy to hear your back up and running. :)
lazyseller
12-08-2005, 03:34 PM
Thanks alot Resale... waiting for the release
i wish i found your forum before i quit working =) in the sales market..
I got a recommendation though
members from around the world.
maybe a enter forums link... right under that text on your index page...
I recommend some sorta forum link like enter forums or forums somewhere on your page i was a bit lost when i first entered the page because i didnt want to click one of the latest post and that didnt give me any other option other than adsense.
Snake
12-08-2005, 04:29 PM
Whoa thanks for the update.
ResaleBroker
12-08-2005, 07:20 PM
Thanks alot Resale... waiting for the release
i wish i found your forum before i quit working =) in the sales market..
I got a recommendation though
members from around the world.
maybe a enter forums link... right under that text on your index page...
I recommend some sorta forum link like enter forums or forums somewhere on your page i was a bit lost when i first entered the page because i didnt want to click one of the latest post and that didnt give me any other option other than adsense.Thanks! :) I promised myself that if anyone brought that up I'd add a link to the forums so... link has been added. Thanks Again!
RaceJunkie
12-09-2005, 02:09 PM
Clicks Install
Thank You very much for your time
Jorrit787
12-25-2005, 03:01 AM
Works great, except that there seems to be an extra line break at the top of the box (see attached screenshot) - How do I get rid of it?
EDIT: Apparently it only shows the extra linebreak for admins...
RetroDreams
04-02-2006, 12:41 PM
Someone needs to finally change this to a plug/product.
ResaleBroker
04-02-2006, 02:51 PM
Someone needs to finally change this to a plug/product.Sorry, I forgot all about this. I think Noppid said he had this packaged. I'll send him a PM.
noppid
04-04-2006, 08:32 PM
Sorry, I forgot all about this. I think Noppid said he had this packaged. I'll send him a PM.
I forgot all about this being as it was your idea and original post. I read a post that said I did it, so I'll go look.
lemonpiesaregoo
04-25-2006, 05:48 PM
Hello,
I just installed this on http://www.make-money-online.tv/forum. And now that anytime anyone goes to the User CP this message shows up at the top of the window:
"Parse error: parse error, unexpected '[' in /home/makemo3/public_html/forum/usercp.php(471) : eval()'d code on line 3"
any ideas on how I can fix this?
Thanks
ResaleBroker
04-30-2006, 01:04 AM
Lemonpiesaregoo, I sent you a PM. If you're still having troubles let me know.
ResaleBroker
04-30-2006, 01:18 AM
The 3.5.x product is now available for download. :)
Boofo
04-30-2006, 03:13 AM
I have this packaged and ready to release as a vB 3.5 product when RB is ready. ;)
I have modified the phrase and USERCP Template add in code a bit as well. The box is still collaspable, but when collapsed, it still shows the referrer link for the member.
I also made the link just text. When the link was live, it was too easy to click and activate it while trying to copy and paste it.
How did you have it show the referrer link when it was collasped? I'd like to learn that. ;)
paulfletcher
05-01-2006, 11:32 PM
I have a quick question as well. I noticed in the "Downloads" section you have multiple downloads
refid usercp v1.2.zip
product usercp referrals.xml
I've downloaded the .zip and I've followed those instructions and everything appears to be working. But I wanted to check and see if I needed to install the .xml file as well.
Could you let me know if I need to install that as well, after making the needed code modifications.
Thanks,
Paul
ResaleBroker
05-02-2006, 12:02 AM
Hello Paul,
The "zip" download is for boards running 3.0.x
The "xml" dowload is for boards running 3.5.x
Cheers,
Jeff
Ohiosweetheart
05-02-2006, 01:07 AM
so this is good for 3.5.4 now?
ResaleBroker
05-02-2006, 01:21 AM
so this is good for 3.5.4 now?Yep! It has always worked with 3.5.4 but now all you have to do is install the product.
Ohiosweetheart
05-02-2006, 01:22 AM
wonderful, thank you Jeff
ResaleBroker
05-02-2006, 01:39 AM
Happy to be of help. :)
kurtbarker
05-02-2006, 02:02 AM
works great mate, real easy with only having to upload the product
jfreundn
05-11-2006, 02:38 AM
Hi there,
This Mod sounds like exactly what I am seeking but when I click on product usercp referral id 3 5 4.xml it takes me to the file itself. Nothing to download...I'm not that familiar with installing products but can you tell me how I get the file and then imported to the AdminCP.
I do know how to do that when the whole file just downloads for me.
Sorry, I know this shouold probably be obvious.
Thanks for creating the Mod though, I can't wait to use it.
Boofo
05-11-2006, 07:30 AM
Hi there,
This Mod sounds like exactly what I am seeking but when I click on product usercp referral id 3 5 4.xml it takes me to the file itself. Nothing to download...I'm not that familiar with installing products but can you tell me how I get the file and then imported to the AdminCP.
I do know how to do that when the whole file just downloads for me.
Sorry, I know this shouold probably be obvious.
Thanks for creating the Mod though, I can't wait to use it.
Right-click on the file and do a Save As. ;)
kurtbarker
05-13-2006, 11:21 AM
hey guyz, in my UserCP I have 2 referrer ID links and descriptions, it's like I installed the product twice, which I didn't do
I used the XML... can anyone tells me where I can look for duplicate entries in the templates? or anything else that may be causing this... thanks
kurtbarker
05-22-2006, 11:13 AM
hmmm, I gotta try this again, lol
i'm still getting the 2 referral links & descriptions one after the other in the UserCP
http://www.commodorelife.com/forums/usercp.php
Test Account
Username: cltestaccount
Password: password
ResaleBroker
05-27-2006, 01:17 AM
Hmmm... I logged in and see what you mean. Have you tried to unstill the mod and then reinstall?
Boofo
05-27-2006, 02:02 AM
Have you got both versions intsalled (the template edit and the product)?
sorry for my question but when a user registers he has the Refferal field option and can introduce the name he wishes.
in this case why would I need this hack?
Ohiosweetheart
05-28-2006, 02:07 AM
this hack is used to increase the referring members' referral count/points.
Plus, even tho the referral fiend is there, not everyone knows the username of the person who referred them
even using the Refferal field when registering the number of refferals of the user would be increased.
you mean it is affected the Rep Power?
Ohiosweetheart
05-28-2006, 02:40 AM
No it doesn't affect rep power that I know of. My main point was, not everyone knows the username of the person referring them. In that case, the referral link is invaluable
ResaleBroker
05-28-2006, 04:40 AM
sorry for my question but when a user registers he has the Refferal field option and can introduce the name he wishes.
in this case why would I need this hack?Hello jplg, this mod is a way to help promote your forum through referrals.
It shows the referral Message/Request to the user every time they visit the UserCP.
It shows the user's referral Count.
It displays the referral Link in plain view for Ease of Use.I'll assume you realize the benefits of those three (3) features but if you don't let me know and I'll attempt to explain. ;)
Hello jplg, this mod is a way to help promote your forum through referrals.
oook :) thanks I'm gonna install it ;)
offsidex
05-28-2006, 11:19 PM
great, thanks
kurtbarker
05-30-2006, 04:31 AM
Hmmm... I logged in and see what you mean. Have you tried to unstill the mod and then reinstall?
actually no, will try now...
Have you got both versions intsalled (the template edit and the product)
no, I never did the template edit
kurtbarker
05-30-2006, 04:47 AM
well I found the problem: see attachment
but... how did it do that....
I uninstalled one, and it's fine now
Boofo
05-30-2006, 05:24 AM
Not sure, but as long as it is working now, I wouldn't worry too much about it. ;)
captainron19
05-31-2006, 02:55 PM
OK I manually installed this on my V 3.5.4 and actually changed the phrase so the link for the referral would not be a link any more but instead just text making it easier to copy and paste.
My question is.... I saw int he screen shot something that was a link to automatically email to a friend but it is not showing up in my User CP.
ResaleBroker
06-01-2006, 09:03 PM
My question is.... I saw int he screen shot something that was a link to automatically email to a friend but it is not showing up in my User CP.
That is not part of the mod. That was added separate.
Boofo
06-01-2006, 09:05 PM
That is not part of the mod. That was added separate.
Do you want me to add this to the XML, sir. ;)
ResaleBroker
06-01-2006, 09:10 PM
Do you want me to add this to the XML, sir. ;)With my forum I have installed the "refer friend" mod by Irwin: https://vborg.vbsupport.ru/showthread.php?t=59708. That is the final destination of the link you see in the screenshot.
Boofo
06-01-2006, 09:21 PM
With my forum I have installed the "refer friend" mod by Irwin: https://vborg.vbsupport.ru/showthread.php?t=59708. That is the final destination of the link you see in the screenshot.
But you're still running 3.0, right? I don't think that has been updated for 3.5 yet. I can always add it if it gets updated. Just let me know when, sir. ;)
ResaleBroker
06-01-2006, 09:28 PM
But you're still running 3.0, right? I don't think that has been updated for 3.5 yet. I can always add it if it gets updated. Just let me know when, sir. ;)Yes, that forum is still running the 3.0.x version. Yes, let's stay in touch. ;)
buyinflatables
06-10-2006, 03:33 AM
Does anyone know if this mod works on 3.5.4?
Thank you
Tim
ResaleBroker
06-10-2006, 05:29 PM
Does anyone know if this mod works on 3.5.4?Yes, this mod works with 3.5.4.
murph5
07-03-2006, 08:55 AM
How come there's a product for this, but in the instructions there's no mention of it...just a plugin?
I added the code to usercp, added the phrase and then imported the product and got a strange result - the usercp now shows 2 versions of the whole mod, but the first has messed up links! Any ideas anyone?
murph5
07-03-2006, 09:00 AM
nevermind...misunderstood! Deleted the code added to usercp, couldn't delete the custom phrase...but seems to work now!
noj75
07-03-2006, 05:04 PM
Works a treat in 3.5.4 Thanks alot.
/me Clicks Install
im using this for 3.5.4 so is there a way i can redirect the referral link to a different page?
bada_bing
07-25-2006, 01:37 PM
Installed and works good with vb 3.5.3 & 3.5.4
Thanks
the link leads for my site directly into the forums, I'd like it to lead to the portal page. where may I change the destination?
dcristo
08-31-2006, 01:09 PM
Has anyone installed this on 3.6 ?
navjotjsingh
09-10-2006, 05:49 PM
Same question from me..Does this works on 3.6.0?
Ohiosweetheart
09-16-2006, 12:52 PM
I'm guessing that noone knows?
ResaleBroker
09-16-2006, 02:00 PM
im using this for 3.5.4 so is there a way i can redirect the referral link to a different page?In the first step, "Modify USERCP template" find:
5="$vboptions[bburl]/index.php?referrerid=$bbuserinfo[userid]... and change "index.php" to the page you want the link to point to.
ResaleBroker
09-16-2006, 02:01 PM
I have not installed this on 3.6+ however unless something has changed that I'm not aware of I can't see why it wouldn't work.
rezapci
09-18-2006, 12:12 AM
Now VB Version is 3.6.1, Is there any update for this plugin?
gamesmastervide
10-12-2006, 08:52 PM
it dont work on 3.6 using the product file..
whitetigergrowl
10-15-2006, 11:37 PM
DO NOT do any template edits or php file edits. Install ONLY the xml file. I am using 3.6.2 and by using only the product xml file it works like a charm.
ResaleBroker
10-16-2006, 12:58 AM
DO NOT do any template edits or php file edits. Install ONLY the xml file.Yes. The template/php file edits are for older versions (3.0.x).
big dan
10-22-2006, 04:20 PM
Smooth install on a heavily modded 3.6.2 board! Thanks.
navjotjsingh
11-30-2006, 02:39 AM
Worked fine on 3.6.4 also!
tobybird
12-21-2006, 12:16 PM
Much better than my template edit! Very nice and yes the only thing needed for 3.6.4 is the xml file. Thanks!! - Installed :)
Mupetz
01-07-2007, 03:16 PM
Yes, working on 3.6.4
Added the USERCP template & Pharse text, no php modification.
Tested & working
^SuiCyde^
01-12-2007, 07:24 AM
very nice with the 3.6.4.....only using the xml no other modifications needed......
working excellently....
carsten65
01-12-2007, 11:48 AM
Great hack, thanks!
Is there a way that users who referred a certain amount of new users get automatically transferred in another user group? I would like to reward user who refer many new user with a bigger PM post box for example.
Is there already a hack out there? I couldn't find anything.
Carsten
hbixler03
01-16-2007, 02:25 AM
Wow what a great mod and very easy to install! Thanks!
God Bless,
Heather :)
o0Hubba0o
01-19-2007, 10:33 PM
Using 3.6.4 and the link it gives to use is: http://www.graphicsanonymous.net/forums/~Hubba~
~Hubba~ being my username of course, but that's not a referral link, how would I fix this?
mrkhm
01-26-2007, 05:59 AM
absolutely magnificently beautfiully worksin 3.6.4 at the click of 3 buttons. many thanks * installed
Rickeo
02-10-2007, 06:27 PM
Am having a problem I installed the pharse wrong how do I delete the phrase now :S
Oh dear
~Rick~
Rickeo
02-10-2007, 07:23 PM
Oh I fixed it now however I have one fianl problem on my table it has this at the bottom:
[ARG:6 UNDEFINED]
Under the referal link how do I get rid of this
Would be great for some support here.
Thanks
~Rick~
DinarMet
02-11-2007, 08:03 PM
Great mod. Worked perfectly fine on 3.6.4.
Thanks to all you lifesavers out there.
volarium
02-26-2007, 08:12 PM
OK I manually installed this on my V 3.5.4 and actually changed the phrase so the link for the referral would not be a link any more but instead just text making it easier to copy and paste.
My question is.... I saw int he screen shot something that was a link to automatically email to a friend but it is not showing up in my User CP.
That is not part of the mod. That was added separate.
Do you want me to add this to the XML, sir. ;)
Can someone provide instructions on how the "automatic email" feature was added separately, and what it does? Is it a separate modification that needs to be installed?
Here's what I did, maybe it's the same as what others have done. Obviously, it will only work if the user has their email client setup correctly. I made my $vbphrase[refid_usercp]:
<p>Please help us spread the word about "{1}." When referring others to the community you can use the link below which includes your own unique referral ID.
</p>
<p>Each time someone follows this link to {1} and registers as a new member, your referral count will be incremented by one. The total number of referrals you currently have can always be viewed at the top of this box (next to {1} {2}) as well as in your <a href="{3}">{4}</a>.
</p>
<p>Please be courteous when promoting {1} by not spamming other web sites and/or email addresses with your referral link just to gain referrals.
</p>
<fieldset id="referrallink"><legend>Referral Link for {5} </legend><a href="mailto:?subject=Join us on VFRworld!&body=I would like to invite you to join us on VFRworld, the premier website for everything about the Honda VF/VFR Interceptor!%0d%0a%0d%0a{6}"{6}>{6}</a></fieldset>
Thanks.
ResaleBroker
02-26-2007, 11:02 PM
Hello Volarium,
The "Email to Friend" link is not part of this mod. That is an additional mod that was installed on that forum at the time of the screenshot.
If the "Email to Friend" mod is available for the version of vBulletin that you're running you could add the link information to your UserCP template by either hand coding or building a plug-in.
daddygrim
03-02-2007, 01:35 PM
Fatal error: Call to a member function on a non-object in /****/local/home/*****/******/forum/usercp.php on line 613
ummmm?
daddygrim
03-02-2007, 01:44 PM
$refcount = $db->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid = '".$vbulletin->userinfo['userid']."'"); this the line from what i see.
this is my code remember i'm now using 3.6.5
// REFERRALS
$refcount = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "user WHERE referrerid = '".$bbuserinfo['userid']."'");
$referrals = vb_number_format($refcount['count']);
eval('$HTML = "' . fetch_template('USERCP') . '";');
daddygrim
03-02-2007, 02:21 PM
ok fixed..lol i just read through the thread..and just imported the plug in.
Rickeo
03-07-2007, 08:31 PM
Any hep on my question page 9 last post??
Please
Thanks
~Rick~
vAsia
03-10-2007, 10:41 PM
Is there a way for it to use username instead of id #?
ResaleBroker
03-13-2007, 01:35 AM
Oh I fixed it now however I have one fianl problem on my table it has this at the bottom:
[ARG:6 UNDEFINED]
Under the referal link how do I get rid of this
Would be great for some support here.
Thanks
~Rick~Have you uninstalled the product and then reinstalled?
Rickeo
03-13-2007, 03:57 PM
Nope I shall try that thank you :)
~Rick~
DieselMinded
03-16-2007, 09:06 PM
I have Vb 3.6.5
Its my first forum I have edited sometemplates and some other things But never Installed something Buy Installed do you guys Mean Uploading it to the server ? Like on the root or something esle Please help
DM
DieselMinded
03-16-2007, 09:30 PM
I got it Have to go to the Products in Admin and upload from server Hey this worked pretty sweet now to figure out how to add a poage that lists how many refearls each member has I know I can see in the Conrtol pannel but I want a public Page? Any ideas?
DM
theorigin
03-19-2007, 10:11 PM
I'm running 3.6.2 right now and I uploaded the product, but absolutely nothing happened. I uninstalled it and re-installed it, but still nothing. Anyone know what I'm missing?
Mrdby
04-19-2007, 01:46 PM
Is it possible I have the site directed to my PORTAL page instead of the forum?
Great mod. Worked perfectly fine on 3.6.4.
Thanks to all you lifesavers out there.
sweet as a nut m8 nice work
Mrdby
04-20-2007, 11:00 AM
Is it possible I have the site directed to my PORTAL page instead of the forum?
anybody?????
Muellmann
04-21-2007, 09:46 PM
Great addon :D Works fine! Thanks!
csavern
05-21-2007, 02:19 AM
Worked Great on 3.6.7 with no problems
thanks for the mod
will come in very handy
Brandon Sheley
05-21-2007, 02:39 AM
anybody?????
it should be directed to your registration page ;)
Mrdby
05-21-2007, 01:15 PM
How can i have this directed to the portal page instead of the forums?
Chadi
05-22-2007, 04:59 AM
I hope someone can help me. After upgrading to 3.6.7 and upgrading this hack to a new style, its showing up twice in user control panel area, oddly one a different background color w/ errors, a 2nd below it normal w/o errors. I double checked usercp and the coding is right
usercp
$template_hook[usercp_main_pos1]
<if condition="$show['privatemessages']">
<!-- ############## PRIVATE MESSAGES ############## -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('usercp_pms')"><img id="collapseimg_usercp_pms" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_usercp_pms].gif" alt="" border="0" /></a>
<a href="private.php$session[sessionurl_q]">$vbphrase[new_private_messages]</a><span class="normal">: ($numpms)</span>
</td>
</tr>
</thead>
<tbody id="collapseobj_usercp_pms" style="$vbcollapse[collapseobj_usercp_pms]">
$messagelistbits
</tbody>
</table>
<br />
<!-- ############## END PRIVATE MESSAGES ############## -->
</if>
$template_hook[usercp_main_pos2]
<!-- ############### REFERRALS ############### -->
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center"
style="background-color:white">
<thead>
<tr>
<td class="tcat">
<a style="float:right" href="#top" onclick="return toggle_collapse('referral')"><img id="collapseimg_referral" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_my_table].gif" alt="" border="0" /></a>
$vboptions[bbtitle] $vbphrase[referrals]: <span class="normal">($referrals)</span>
</td>
</tr>
</thead>
<tbody id="collapseobj_referral" style="">
<tr>
<td class="page" align="left" width="100%">
<phrase 1="$vboptions[bbtitle]" 2="member.php?$session[sessionurl]do=getinfo&userid=$bbuserinfo[userid]" 3="$vbphrase[profile]" 4="$bbuserinfo[username]" 5="$vboptions[bburl]/index.php?referrerid=$bbuserinfo[userid]" >$vbphrase[refid_usercp]</phrase>
</td>
</tr>
</tbody>
</table>
<br />
<!-- ############# END REFERRALS ############# -->
<!-- ############## SUBSCRIBED THREADS ############## -->
<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_subthreads')"><img id="collapseimg_usercp_subthreads" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_usercp_subthreads].gif" alt="" border="0" /></a>
<a href="subscription.php?$session[sessionurl]do=viewsubscription">$vbphrase[new_subscribed_threads]</a><span class="normal">: ($numthreads)</span>
</td>
</tr>
</thead>
<tbody id="collapseobj_usercp_subthreads" style="$vbcollapse[collapseobj_usercp_subthreads]">
<if condition="$show['threads']">
<tr class="thead">
<if condition="$show['threadicons']">
<td class="thead" colspan="2"> </td>
<else />
<td class="thead"> </td>
</if>
<td class="thead" width="100%">$vbphrase[thread] / $vbphrase[thread_starter]</td>
<td class="thead" width="150" align="center" nowrap="nowrap">$vbphrase[last_post]</td>
<td class="thead" align="center">$vbphrase[replies]</td>
<td class="thead" align="center">$vbphrase[views]</td>
</tr>
$threadbits
<else />
<tr>
<td class="alt1" align="center" colspan="7"><strong>$vbphrase[no_subscribed_threads_to_display]</strong></td>
</tr>
</if>
<tr>
<td align="$stylevar[right]" colspan="7" class="tfoot">
<span class="smallfont"><a href="subscription.php?$session[sessionurl]do=viewsubscription&folderid=all">$vbphrase[view_all_subscribed_threads]</a></span>
</td>
</tr>
</tbody>
</table>
<br />
<!-- ############## END SUBSCRIBED THREADS ############## -->
$template_hook[usercp_main_pos3]
<if condition="$show['forums']">
<!-- ############## SUBSCRIBED FORUMS ############## -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('usercp_forums')"><img id="collapseimg_usercp_forums" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_usercp_forums].gif" alt="" border="0" /></a>
$vbphrase[subscribed_forums]
</td>
</tr>
</thead>
<tbody id="collapseobj_usercp_forums" style="$vbcollapse[collapseobj_usercp_forums]">
<tr align="center" valign="bottom">
<td class="thead" width="2%"> </td>
<td class="thead" align="$stylevar[left]" width="80%">$vbphrase[forum]</td>
<td class="thead">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" width="20%">$vbphrase[moderator]</td>
</if>
</tr>
$forumbits
</tbody>
</table>
<br />
<!-- ############## END SUBSCRIBED FORUMS ############## -->
</if>
$template_hook[usercp_main_pos4]
<if condition="$show['infractions']">
<!-- ############## NEW INFRACTIONS ############## -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="7">
<span class="smallfont" style="float:$stylevar[right]">
<phrase 1="$bbuserinfo[ipoints]">$vbphrase[x_points_total]</phrase>
<a href="#top" onclick="return toggle_collapse('usercp_infraction')"><img id="collapseimg_usercp_infraction" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_usercp_infraction].gif" alt="" border="0" /></a>
</span>
$vbphrase[latest_infractions_received]
</td>
</tr>
</thead>
<tbody id="collapseobj_usercp_infraction" style="$vbcollapse[collapseobj_usercp_infraction]">
<tr>
<td class="thead"> </td>
<td class="thead">$vbphrase[post]</td>
<td class="thead">$vbphrase[date]</td>
<td class="thead">$vbphrase[expires]</td>
<td class="thead" nowrap="nowrap">$vbphrase[points]</td>
<td class="thead">$vbphrase[reason]</td>
<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
</tr>
$infractionbits
</tbody>
</table>
<br />
<!-- ############## END NEW INFRACTIONS ############## -->
</if>
$template_hook[usercp_main_pos5]
<if condition="$show['reputation']">
<!-- ############## NEW REPUTATION ############## -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="$reputationcolspan">
<span class="smallfont" style="float:$stylevar[right]">
<phrase 1="$bbuserinfo[reputation]">$vbphrase[x_points_total]</phrase>
<a href="#top" onclick="return toggle_collapse('usercp_reputation')"><img id="collapseimg_usercp_reputation" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_usercp_reputation].gif" alt="" border="0" /></a>
</span>
$vbphrase[latest_reputation_received]
</td>
</tr>
</thead>
<tbody id="collapseobj_usercp_reputation" style="$vbcollapse[collapseobj_usercp_reputation]">
<tr>
<td class="thead"> </td>
<td class="thead">$vbphrase[thread]</td>
<td class="thead">$vbphrase[date]</td>
<if condition="$vboptions['showuserraters']">
<td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
</if>
<td class="thead">$vbphrase[comment]</td>
</tr>
$reputationcommentbits
</tbody>
</table>
<br />
<!-- ############## END NEW REPUTATION ############## -->
</if>
<form name="personalnotepad" method="post" action="usercp.php$session[sessionurl_q]">
<table class="tborder" width="100%" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]" align="center">
<tr>
<td class="tcat" align="center">$vbphrase[personal_notepad]</td>
</tr>
<tr>
<td class="alt1" align="center">
<textarea name="notepad" rows="7" cols="45">{$vbulletin->userinfo['notepad']}</textarea>
<input type="hidden" name="do" value="savenotepad" /></td>
</tr>
<tr>
<td class="alt2" align="center"><input type="submit" value="$vbphrase[save_notepad]" /></td>
</tr>
</table>
</form>
$template_hook[usercp_main_pos6]
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100%"> </td>
<td align="$stylevar[right]">$forumjump</td>
</tr>
</table>
newforum
05-24-2007, 12:07 PM
Great hack, installed on 3.6.7 working fine without any problems.
Mrdby
06-05-2007, 05:04 PM
How can i edit this to direct to the CMPS instead of forum?
Kevlar
06-06-2007, 07:31 PM
Anyway to make this persistent so if they minimize it, it stays minimized until they maximize it? (for 3.6.7)?
jahshaka
06-11-2007, 10:11 PM
hey i installed and dont get the 'email a friend' option - any ideas?
jahshaka
06-11-2007, 10:28 PM
ok figured that out - its a different mod - but i have a bigger problem now... following the link just takes you to my home page, not to the registration page? i am running vbSEO with modrewrite...
heres the link fro mmy cp you will see what i mean
http://www.bigmusicboard.com/index.php?referrerid=8799
any ideas?
txsbmw
06-14-2007, 11:58 AM
Anyway to make this persistent so if they minimize it, it stays minimized until they maximize it? (for 3.6.7)?
I would like to know this as well. It does not stay collapsed and my members have brought it up wishing it would.
chatzworld
06-21-2007, 08:06 AM
ok figured that out - its a different mod - but i have a bigger problem now... following the link just takes you to my home page, not to the registration page? i am running vbSEO with modrewrite...
heres the link fro mmy cp you will see what i mean
http://www.bigmusicboard.com/index.php?referrerid=8799
any ideas?
I seen this but if you click on Register it will auto-place the username of the referer int he referal box :)
txsbmw
06-23-2007, 09:51 PM
I would like to know this as well. It does not stay collapsed and my members have brought it up wishing it would.
Ok set out to read some articles and have fixed it:
Replace your usercp_referrals template with this (it was missing some code to get it to work:
<!-- ########## REFERRALS IN USER CP ########## -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('referral')"><img id="collapseimg_referral" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_referral].gif" alt="" border="0" /></a>
$vboptions[bbtitle] $vbphrase[referrals]<span class="normal">: ($referrals)</span>
</td>
</tr>
</thead>
<tbody id="collapseobj_referral" style="$vbcollapse[collapseobj_referral]">
<tr>
<td class="alt1" title="$bbuserinfo[username]'s $vbphrase[referrals]" width="100%" align="left">
<phrase 1="$vboptions[bbtitle]" 2="$vbphrase[referrals]" 3="member.php?$session[sessionurl]u=$bbuserinfo[userid]" 4="$vbphrase[profile]" 5="$bbuserinfo[username]" 6="$vboptions[bburl]/index.php?referrerid=$bbuserinfo[userid]" >$vbphrase[refid_usercp]</phrase>
</td>
</tr>
</tbody>
</table>
<br />
<!-- ######## END REFERRALS IN USER CP ######## -->
doopz
07-03-2007, 02:57 PM
Hello,
Is it possible to show the referred users-list?
Also, that only "activated" members are being displayed?
julia44
07-13-2007, 01:07 PM
NM
helps if you read everything
kyokushin4life
08-12-2007, 08:07 AM
DO NOT do any template edits or php file edits. Install ONLY the xml file. I am using 3.6.2 and by using only the product xml file it works like a charm.
Thanks! lol i read this after i did all the changes and got errors. Could an author please update the thread for new vb3.6+ users? Say no template or php files need changes. Users just need to import the xml file. very handy. thanks.
kylek
09-23-2007, 02:20 AM
Works fine on 3.6.8.
The Fat Boy
10-01-2007, 08:58 PM
i have a member with 26 referrals.... only shows 8 on the mod... strange?!
JadedSouls
10-13-2007, 04:24 AM
Using 3.6.4 and the link it gives to use is: http://www.graphicsanonymous.net/forums/~Hubba~ (http://www.graphicsanonymous.net/forums/%7EHubba%7E)
~Hubba~ being my username of course, but that's not a referral link, how would I fix this?
That's the same thing that happened on mine! I don't know why it's doing that either..
onehost
10-23-2007, 04:55 AM
I just installed this for 3.6.8
I seem to have a double refid_usercp, i also
see the double listing under usercp, ive been
looking everyone to delete this.
Can someone direct me to where i need to delete
the double refid_usercp, one says Custom, the
other says standard.
Thanks
o0Hubba0o
11-06-2007, 10:59 PM
That's the same thing that happened on mine! I don't know why it's doing that either..
I just came back to this thread today because I started a new forum and the link it gives is correct, it may have been a conflict with another mod or some old code maybe?
silvermerc
11-07-2007, 11:33 AM
ooo is their any chance theirs one of thease for 3.6.8
gorentals
08-13-2008, 01:12 PM
Does this work in 3.7.0? I can't seem to find one that works in 3.7
Thanks
MarkoP
09-21-2008, 01:19 AM
Would be nice if this worked with the latest version of VB.
spiegelj
09-29-2008, 04:40 AM
it works fine for me with 3.7.3
MarkoP
09-29-2008, 05:33 AM
it works fine for me with 3.7.3
Thanks for letting us know!!
Works perfectly.
UKBusinessLive
01-01-2009, 05:59 PM
it works fine for me with 3.7.3
Same here works a treat :D
mmurtha
01-04-2009, 04:01 PM
I jus installed this Mod in 3.7.4, and it is working perfectly.
Thank you, I've been looking for a MOd to do this for a good long while. ;)
Mary
ChrisDoT
01-06-2009, 07:44 PM
Maybe this hack is interesting for someone too:
Cyb - Advanced Registration (https://vborg.vbsupport.ru/showthread.php?t=198359)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.