Log in

View Full Version : Need Help With My First Product


Sema
06-28-2008, 01:49 AM
Hello,,,

This is my first product :)

I am so excited about it :D

But I have a problem in it :(

The Product is to hide some Profiles and I tryed to do that in the plugin but it didn't work so I did it in MEMBERINFO Template.

I know what is wrong but I don't know what to do to fix it.

<if condition="$vboptions[on_off]">
<if condition="$userinfo['userid'] == $vboptions[profileid]">
standard_error('Sorry you are not allowed to view this profile')
</if>
</if>

The problem is in
standard_error('Sorry you are not allowed to view this profile')

How can I fix that?

Dismounted
06-28-2008, 04:56 AM
You cannot run PHP functions in templates.

Sema
06-28-2008, 03:14 PM
As I said I know the problem but how can it show the error message because if I use the plugin it will not show the error.

I use this code:

$on = $vbulletin->options['on_off'];
$hide = $vbulletin->options['profileid'];
$user = $user[userid];

if ($on){
if ($hide !=""){
if ($user == $hide){

standard_error('Sorry you are not allowed to view this profile');
}
}
}

Opserty
06-28-2008, 03:25 PM
You can combine all of that into a single condition...

if(($vbulletin->options['on_off']) AND (!empty($vbulletin->options['profileid'])) AND ($user['userid'] == $vbulletin->options['profileid']))
{
standard_error('Sorry...');
}
Are you sure $user['userid'] is the correct variable, maybe it should be $userinfo['userid']?

Use print_no_permission (http://members.vbulletin.com/api/vBulletin/_includes---functions.php.html#functionprint_no_permission)()

Sema
06-28-2008, 09:10 PM
I am just a newbie so combining would be a hard thing because I need to know where is the errors, but I can't make it better that what you did :)

I don't want to use print_no_permission()
I thought about using it but the message is better to show the reason :)

I am not sure about $user['userid']it dosen't work even with $userinfo['userid'] but it is used in the template MEMBERINFO

I don't think there should be template change because the plugin hook is member_start

MoT3rror
06-29-2008, 02:57 AM
The current userinfo is
$vbulletin->userinfo
or in template
$bbuserinfo

On member.php the userinfo of the profile is
$userinfo

Sema
06-29-2008, 03:38 AM
I used it like that

if(($vbulletin->options['on_off']) AND (!empty($vbulletin->options['profileid'])) AND ($vbulletin->userinfo['userid'] == $vbulletin->options['profileid']))
{
standard_error('Sorry you are not allowed to view this profile');
}

But the problem is it is hiding the profile if the viewer id was = userid

What I want is to hide the profile from all members

ex.
If the page was www.example.com/member.php?u=$vbulletin->options['profileid']
It will show the error message.

MoT3rror
06-29-2008, 04:26 AM
if($userinfo['userid'] == $vbulletin->options['profileid'])
{
//show error
}

Sema
06-29-2008, 12:30 PM
I did try the code but it dosn't work :(

if(($vbulletin->options['on_off']) AND (!empty($vbulletin->options['profileid'])) AND ($userinfo['userid'] == $vbulletin->options['profileid']))
{
standard_error('Sorry you are not allowed to view this profile');
}

For more than a week and I am doing my best to make it work and I try to do it more than 300 times ya realy more than 300 times :(

Dismounted
06-29-2008, 12:55 PM
What hook are you putting it at?

Sema
06-29-2008, 01:39 PM
The hook is member_start

Dismounted
06-29-2008, 01:55 PM
Use member_execute_start.

Sema
06-29-2008, 02:05 PM
It is working :D

Thank you Dismounted (https://vborg.vbsupport.ru/member.php?u=86103)

Thank you Opserty (https://vborg.vbsupport.ru/member.php?u=197383)

Thank you MoT3rror (https://vborg.vbsupport.ru/member.php?u=189949)

I hop you all joy

One last thing

The product is for one id, How can I make it for several ids?

dartho
06-30-2008, 01:32 AM
How about comma separating multiple userids in your profileid field and chaning the plugin code to something like:

$profileid_array=explode(',',$vbulletin->options['profileid']);
if(($vbulletin->options['on_off']) AND (!empty($vbulletin->options['profileid'])) AND (in_array($vbulletin->userinfo['userid'],$profileid_array)))
{
standard_error('Sorry you are not allowed to view this profile');
}


?

Sema
06-30-2008, 01:39 AM
It is not working at all with the last code :confused:

dartho
06-30-2008, 02:11 AM
2nd Attempt

if( ($vbulletin->options['on_off']) AND (!empty($vbulletin->options['profileid'])) AND (in_array($userinfo['userid'],explode(',',$vbulletin->options['profileid']))) )
{
standard_error('Sorry you are not allowed to view this profile');
}

Sema
06-30-2008, 02:35 AM
It is working :D

Thank you Dismounted (https://vborg.vbsupport.ru/member.php?u=86103)

Thank you Opserty (https://vborg.vbsupport.ru/member.php?u=197383)

Thank you MoT3rror (https://vborg.vbsupport.ru/member.php?u=189949)

Thank you dartho (https://vborg.vbsupport.ru/member.php?u=110638)

I hop you all joy