PDA

View Full Version : message for profile visitors


b65ran
04-21-2013, 04:23 PM
I was trying to add a message for visitors to "My Profile" like the message would only display if the viewer is not the profile owner. how do i check that ?

is there anything called vbulletin->is_my_profile()?

kh99
04-23-2013, 01:57 PM
Are you trying to do this in a template? And if so, which one?

You might try:

$vbulletin->userinfo['userid'] != $userinfo['userid']

b65ran
04-23-2013, 11:28 PM
Are you trying to do this in a template? And if so, which one?

You might try:

$vbulletin->userinfo['userid'] != $userinfo['userid']

I am trying to do in member_stats.php and your suggestion worked. Thanks so much