Facebook Personalized Fan Page.

sendlerad

Elite Member
Jr. VIP
Joined
Sep 5, 2007
Messages
2,409
Reaction score
702
Hello,

I had simple solution for this, but recently facebook blocked it,

Anybody has already made code like in this facebook page -

Code:
http://www.facebook.com/techeye

What it does is pulls your facebook name surname and puts in page, so you can make personalized message...
 
could u share code?

thats what i am asking for,
my code don't works anymore, no use of sharing it,
it was really simple solution used widely here on BHW on other methods.
 
thats what i am asking for,
my code don't works anymore, no use of sharing it,
it was really simple solution used widely here on BHW on other methods.

ohh my fault
really good code ,anyone have it?
 
Easy, this is done through FBML. The first thing they use is the fb visible connection to make the user like the page, then once liked it shows different content:

Code:
<fb:visible-to-connection>
Fans will see this content.
<fb:else>Non-fans will see this content.</fb:else>
</fb:visible-to-connection>

Next is to greet the user by their name:

Code:
Hello <fb:userlink uid="loggedinuser" />! Thank you for visiting my Page!

fb:userlink uid="loggedinuser" grabs the users name and displays it :)
 
thanks a lot for the code buddy will be help full ......
 
Easy, this is done through FBML. The first thing they use is the fb visible connection to make the user like the page, then once liked it shows different content:

Code:
<fb:visible-to-connection>
Fans will see this content.
<fb:else>Non-fans will see this content.</fb:else>
</fb:visible-to-connection>

Next is to greet the user by their name:

Code:
Hello <fb:userlink uid="loggedinuser" />! Thank you for visiting my Page!

fb:userlink uid="loggedinuser" grabs the users name and displays it :)

ya i did it mate but i cant get the user name mate....
 
Easy, this is done through FBML. The first thing they use is the fb visible connection to make the user like the page, then once liked it shows different content:

Code:
<fb:visible-to-connection>
Fans will see this content.
<fb:else>Non-fans will see this content.</fb:else>
</fb:visible-to-connection>

Next is to greet the user by their name:

Code:
Hello <fb:userlink uid="loggedinuser" />! Thank you for visiting my Page!

fb:userlink uid="loggedinuser" grabs the users name and displays it :)

thanks..
i was just searching for this code..!!!
 
thanks a lot for the code buddy will be help full ......

how many 1 liners you gonna post to promote your sig? buddy?:rolleyes:

....

when you guys add static html app to your fan page there is an option to enable fbml.
 
Last edited:
Back
Top