Referral System

Started by SMFHacks.com Team, March 03, 2008, 01:02:01 PM

Previous topic - Next topic

Bob Perry of Web Presence Consulting

Quote from: whatever on December 10, 2013, 10:36:06 PM
so basically you say the flaws it gets right now are:
1. Let's say my username is A, and then I register another username B and say that I am referred by A, and it goes through(A gets one referral).
2. And then if I delete B, A's referral count is still 1.


Yes, exactly... and also in its current state, it will allow the registering member to select themselves, sometime soon, I am going to modify my copy to correct these flaws and add a couple neat little tweaks as well
Best Regards,
Bob Perry



"The world is moving so fast these days that the man who says it can't be done is generally interrupted by someone doing it." Elbert Hubbard

mroyusa

paid the 5$ where do i get my code to remove the copyright?

www.coinforums.org paid with paypal [email protected]

vbgamer45

You should have it in your email. Also check your junk/bulk/spam folder.
Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

GamePersia

Some issue,.. :-\
See attached image..
i want to fix this look,..by decreasing the box size,..in which the link is present !!
Kindly tell me how to minimize the box which contains link .  :-*

GamePersia

Quote from: GamePersia on March 28, 2014, 12:03:28 AM
Some issue,.. :-\
See attached image..
i want to fix this look,..by decreasing the box size,..in which the link is present !!
Kindly tell me how to minimize the box which contains link .  :-*
I Am really Need For This Answer,..Hope My Buddies Will Soon Solve It,.. :-\

vbgamer45

Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

GamePersia

Quote from: vbgamer45 on March 29, 2014, 10:36:53 AM
You would edit the profile template file.
Thanks buddy,..work done !!
last question,..
how to move 0 to infront of referrals, andhow to shift link little left wards  :-\
your help will make our work,..
waiting for your positive reply. :)

GamePersia

Quote from: GamePersia on March 29, 2014, 11:20:23 AM
Quote from: vbgamer45 on March 29, 2014, 10:36:53 AM
You would edit the profile template file.
Thanks buddy,..work done !!
last question,..
how to move 0 to infront of referrals, andhow to shift link little left wards  :-\
your help will make our work,..
waiting for your positive reply. :)
Waiting For your precious reply,..hope you will help us again,.. :-*

Bob Perry of Web Presence Consulting

@vbGamer,

Hey bud what are the chances of integrating that little snippet of code previously posted that displays the little drop down of the users referrees next to their referral count? and also, since that snippet creates an accurate list of users, how tough would it be to validate the referrer upon registration and modify the numbers in case an account gets deleted... so that the referral numbers and the drop down always match...
Best Regards,
Bob Perry



"The world is moving so fast these days that the man who says it can't be done is generally interrupted by someone doing it." Elbert Hubbard

Shades.

When I use the referral link it goes to the registration page but does not automatically fill in the "referred by" box!? Help! :o
ShadesWeb.com - Custom Logos - My Themes on SMF | My Themes on ShadesWeb
https://shadesweb.com

BikerHound.com - Sniffing out the road ahead
https://bikerhound.com

Dream as if you'll live forever; Live as if you'll die today. - James Dean

br360

It doesn't automatically fill it in. But even if they leave that "referred by" box empty when registering; as long as they register for an account using the referral link you send them, you will still get credit for the referral.

Shades.

What if they use my referral link but enter another members username in the box?
ShadesWeb.com - Custom Logos - My Themes on SMF | My Themes on ShadesWeb
https://shadesweb.com

BikerHound.com - Sniffing out the road ahead
https://bikerhound.com

Dream as if you'll live forever; Live as if you'll die today. - James Dean

vbgamer45

Community Suite for SMF - Take your forum to the next level built for SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com -  Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

br360

Good question. I just tested it, and if I do use the referral link in my profile to register; but then type in another name in the referred by box, the name that gets typed in overrides the referral link.

Deezel

Quote from: Fustrate on February 17, 2009, 09:44:16 PM
I've been really busy lately, so sorry for the late responses.

TJTELLEZ9 - either run this SQL query:
UPDATE smf_members
SET refferals_no = 0
WHERE 1=1


or create a new PHP page (reset.php), put it in your forum's root directory, and put this in it:
<?php
include_once('./SSI.php');

if(isset(
$smcFunc)){
     
$smcFunc['db_query']('''
          UPDATE {db_prefix}members
          SET referrals_no = 0
          WHERE 1=1'
, array());
} else {
     
db_query("
          UPDATE 
{$db_prefix}members
          SET referrals_no = 0
          WHERE 1=1"
__FILE____LINE__);
}

echo 
'Done!';
?>

and navigate to it in your browser.



I'm still working on the RC1 version, sorry for the delays.
Thank you thank you thank you!!!!

Deezel

Quote from: br360 on June 20, 2014, 12:41:18 PM
Good question. I just tested it, and if I do use the referral link in my profile to register; but then type in another name in the referred by box, the name that gets typed in overrides the referral link.
Any way to fix this?? Please.

Mstcool

So I have the ultimate profile mod installed. So what code would I be using in order to add the referral link and referral count to the members profile?

EliteClicks

How can I put field that display members referred by specific user..
as show here..

Bob Perry of Web Presence Consulting

Quote from: EliteClicks on September 02, 2014, 02:11:06 PM
How can I put field that display members referred by specific user..
as show here..


I've got that on my install and if I remember right the codes for doing are posted previously in this thread... I'm going to spend the rest of the day to resolve some other bugs in this module, its necessary for my needs to get this module to a bullet proof stability

Best Regards,
Bob Perry



"The world is moving so fast these days that the man who says it can't be done is generally interrupted by someone doing it." Elbert Hubbard

EliteClicks

Quote from: Bob Perry on September 02, 2014, 02:19:06 PM
Quote from: EliteClicks on September 02, 2014, 02:11:06 PM
How can I put field that display members referred by specific user..
as show here..


I've got that on my install and if I remember right the codes for doing are posted previously in this thread... I'm going to spend the rest of the day to resolve some other bugs in this module, its necessary for my needs to get this module to a bullet proof stability
ok :)
If you've done that please let me know those codes.. :)
and how to install them.. :)

Advertisement: