Hello guys.

I's 3 days i try to figure out what's wrong with the 6.x-1.x-dev referral.

Module installe and activated, I have the "Your referrals" link in menu, so that's fine.

BUT: Impossible for my users to find their REFERRAL LINK in the "My account page". (/users/%)

I can't figure out how to fix this, and would be greatfull for any help.

Did you manage to get this referral links using D6 ? or do you experience the same problem ?

Thank you very much

Info: Drupal 6.10, and modules pathauto, profile, Locale, Invite, token, etc...

Comments

titi88888888’s picture

Title: D6: No Ref link on "My account" page » D6: No Referral link on My account page
mediamike’s picture

Same problem here.

socialnicheguru’s picture

can the referral link be placed in a block? I am using panels to override user/%.

Aerodynamo’s picture

I don't really understand this issue? If you go to User Referral settings and enable it to be in the user's profile, then it should be listed at the bottom of the user's "My Account" page. Otherwise, the referral link won't show up.

Make sure the right setting is enabled and it should work... it works fine for me in this version!

nikmahajan’s picture

similar question, how to put it in the block to display it on the overridden user profile page using Panels and Advanced Profile Kit.

Kane’s picture

So, is it possible to show referral links and other stuff in block?

j0k3z’s picture

It seems like many people are not using the default Drupal profiles and are instead using profile .top overrides to customize it a bit. So how do we show a user there referral link if we are using a custom profile. Is there some PHP code we can use, or possible a block we can enable some how?

kbahey’s picture

Status: Needs work » Postponed (maintainer needs more info)

If you have the User's UID, then you can do this:

  // You have the user's $uid from the URL via arg() or some other way

  print l(t('referral link'), 'referral/' . _referral_uid2ref($uid));
j0k3z’s picture

Great, thank you!