PDA

View Full Version : How to hide this?


Divvy
08-13-2011, 12:06 AM
Hello guys,

Maybe someone can help me...

I have this code:
$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';

That shows a link at postbit with all topics from the user at a two specific forums.

I need that:
- the link only shows when the user have threads at least in one of that two forums.
- If not, the link doesn't appear.

It is possible? Please? :)

Or else, I had another idea...
The links only appear If the user belongs to a specific group.

BirdOPrey5
08-13-2011, 07:13 PM
Hello guys,

Maybe someone can help me...

I have this code:
$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';

That shows a link at postbit with all topics from the user at a two specific forums.

I need that:
- the link only shows when the user have threads at least in one of that two forums.
- If not, the link doesn't appear.

It is possible? Please? :)

Or else, I had another idea...
The links only appear If the user belongs to a specific group.

It would be much easier to show it based on usergroup. That code would be:


if (is_member_of($vbulletin->userinfo, 2))
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';
}


Where "2" is the usergroupid... you can change that to whatever usergroupid you want. Primary or secondary. You can also do additional groups by adding more such as:

if (is_member_of($vbulletin->userinfo, 2,5,6,7))

Would work for users in groups 2, 5, 6, and 7.

Depending on the hook you may need to make $vbulletin global if you aren't using it already. Doesn't hurt to put this line at the top of the plugin or php code if you haven't already:
global $vbulletin;

As for your other way, depending on posts in specific forums, that would require custom coding and an additional database query to get that info so this is easier and more efficient code.

Divvy
08-13-2011, 09:26 PM
hi mate, thank you for your reply :)

I tried your code but didnt work, It shows this errors:
Parse error: syntax error, unexpected $end in /home/vns/public_html/forum/includes/class_postbit.php(340) : eval()'d code on line 67

here is my full plugin code:
if ($vbulletin->options['ecpl_Online'] == 1)
{
$mylink = $vbulletin->options['ecpl_link'];
$mylinktitle = $vbulletin->options['ecpl_link_title'];
if ($vbulletin->options['ecpl_unique_number'])
{
$usernumber = ''.$post[userid].'';
}
else
{
$usernumber = '';
}

$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';
}

Any idea? :)

BirdOPrey5
08-14-2011, 12:28 AM
hi mate, thank you for your reply :)

I tried your code but didnt work, It shows this errors:
Parse error: syntax error, unexpected $end in /home/vns/public_html/forum/includes/class_postbit.php(340) : eval()'d code on line 67

here is my full plugin code:
if ($vbulletin->options['ecpl_Online'] == 1)
{
$mylink = $vbulletin->options['ecpl_link'];
$mylinktitle = $vbulletin->options['ecpl_link_title'];
if ($vbulletin->options['ecpl_unique_number'])
{
$usernumber = ''.$post[userid].'';
}
else
{
$usernumber = '';
}

$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';
}

Any idea? :)

Given that code I would put it as part of the main/top condition...


if ($vbulletin->options['ecpl_Online'] == 1 AND is_member_of($vbulletin->userinfo,2))
{
$mylink = $vbulletin->options['ecpl_link'];
$mylinktitle = $vbulletin->options['ecpl_link_title'];
if ($vbulletin->options['ecpl_unique_number'])
{
$usernumber = ''.$post[userid].'';
}
else
{
$usernumber = '';
}

$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';
}

Divvy
08-14-2011, 01:35 AM
Thank you again for your reply BirdOPrey5 :)

I think that the code is correct now, but is not what Im looking for... my english is a little poor, and maybe you didnt understood well my request hehe

Explaining again:
That plugin code that I posted is from this mod:
https://vborg.vbsupport.ru/showthread.php?t=235619

The mod adds a custom link to the postbit, the default is user album link, but I changed to appear the topics that user started in two specific forums.

By default, the link appears to ALL members, even the ones that dont have any topics created in those two forums.
For example, below of the avatar will appear "My topics" link.
My idea is to show that link only to the users that have topics created in those two forums.
If the user dont have any topics created in those two forums, the link dont appear.

Got the idea? :)

I give the usergroup idea, because I add my users to a specific group If they created a topic in those two forums. So If they belong to that group, is because they started a topic in one of those two forums.

Sorry for the trouble...
Any idea how to make this like I want? :)

BirdOPrey5
08-14-2011, 10:22 AM
If you add people to the usergroup the code I have should work. You need to change the number 2 in the is_member_of function to the usergroupid of the usergroup you add members to. 2 was just an example, it shows to all registered users- I would have no idea what the real usergroupid is on your forum.

Divvy
08-14-2011, 10:50 AM
ohhh damn... I have read my explanation and I think that I explained wrong again :/
very sorry mate...

I know that your code works fine! I tried with usergroupid 6 that is administrators and only admins see the link...

But is not what I want lol.

Let me try explain again:
I want to show the link to everyone! but If the user belongs to specific usergroups, the link will appear (to everyone), If the user dont belongs to that specific usergroups, the link will not appear to anyone.

For example, please check:
http://screensnapr.com/e/g8ii2H.jpg

In link above, only the user Ruimaisluisa belongs to the usergroup that I want.
And Green_Boy dont belongs.
But as you can see, the link that says "As minhas fotos" appears to both.
I want to appear only to user Ruimaisluisa, for example :)

nerbert
08-14-2011, 12:23 PM
I think this does it:

Product: vBulletin

Hook location: showthread_postbit_create

Title: Find Qualified Members

Exectuion order: 5

Plugin PHP code:


if($vbulletin->userinfo['userid'] == 5)
{
ini_set('display_errors', '1');
$db->show_errors();
// REMOVE THE STUFF ABOVE WHEN EVERYTHING IS WORKING

$thread_count = $db->query_read("
SELECT COUNT(*)
FROM " . TABLE_PREFIX . "thread
WHERE postuserid = " . $post[userid] . "
AND (forumid = 6
OR forumid = 7)
");
$templater->register('thread_count', $thread_count);

// REMOVE THE STUFF BELOW WHEN EVERYTHING IS WORKING
$db->hide_errors();
}



Put in YOUR user id in the first line and YOUR forumids. When everything is working get rid of the stuff at the top and bottom so everyone can see it.

Now you can use a template conditional:

<vb:if condition="$thread_count > 0"> ................. </vb:if>

I think this will work.

BirdOPrey5
08-14-2011, 12:50 PM
Ahhh...

Try sing $post instead of $vbulletin->userinfo in the is_member_of() function.

edited.

Divvy
08-14-2011, 01:39 PM
Thank you for your reply nerbert, and for trying to help me :)

I created an plugin like you said:
if ($vbulletin->options['ecpl_Online'] == 1)
{
$mylink = $vbulletin->options['ecpl_link'];
$mylinktitle = $vbulletin->options['ecpl_link_title'];
if ($vbulletin->options['ecpl_unique_number'])
{
$usernumber = ''.$post[userid].'';
}
else
{
$usernumber = '';
}

$template_hook['postbit_userinfo_right_after_posts'] .= '<vb:if condition="$thread_count > 0"><div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div></vb:if>';
}

And changed this:
$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';

to this:
$template_hook['postbit_userinfo_right_after_posts'] .= '<vb:if condition="$thread_count > 0"><div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div></vb:if>';

But when I try to see a topic, I get this error:
Fatal error: Call to a member function register() on a non-object in /home/viciados/public_html/forum/showthread.php(1053) : eval()'d code on line 14

What I did wrong?

--------------- Added 1313332981 at 1313332981 ---------------

BirdOPrey5, thank you for keep helping me :)

I did what you said, but didnt work... the link disappeared in all users.

What I added:
if ($vbulletin->options['ecpl_Online'] == 1 AND is_member_of($post->userinfo,27,17,13,18,14))
{
$mylink = $vbulletin->options['ecpl_link'];
$mylinktitle = $vbulletin->options['ecpl_link_title'];
if ($vbulletin->options['ecpl_unique_number'])
{
$usernumber = ''.$post[userid].'';
}
else
{
$usernumber = '';
}

$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';
}

27,17,13,18,14 are the usergroupids that I want link appear.

BirdOPrey5
08-14-2011, 03:05 PM
Sorry, try just $post not $post->userinfo, I got confused. :o

nerbert
08-14-2011, 04:08 PM
Try putting this line just above the $templater->register one

$templater = vB_Template::create('SHOWTHREAD');

I'm not very good at this stuff but just keep in mind that as long as you have all your stuff inside that conditional in the plugin you are the only one who will get errors.

EDIT: That's not my plugin but that error is from mine. I don't know why you get an error and I don't.

Divvy
08-14-2011, 04:46 PM
BirdOPrey5, like that?
if ($vbulletin->options['ecpl_Online'] == 1 AND is_member_of($post,27,17,13,18,14))+
+{+
+$mylink = $vbulletin->options['ecpl_link'];+
+$mylinktitle = $vbulletin->options['ecpl_link_title'];+
+if ($vbulletin->options['ecpl_unique_number'])+
++ {+
++ +$usernumber = ''.$post[userid].'';+
++ }+
+else+
++ {+
++ +$usernumber = '';+
++ }+

+$template_hook['postbit_userinfo_right_after_posts'] .= '<div style="clear:both;" class="left"><a target="_blank" href="'.$mylink.''.$usernumber.'">'.$mylinktitle.'</a></div>';+
+}

Like that, many errors is showing at the threads page:
Parse error: syntax error, unexpected T_STRING in /home/vns/public_html/forum/includes/class_postbit.php(340) : eval()'d code on line 50

Any ideas?

--------------- Added 1313345969 at 1313345969 ---------------

BirdOPrey5, is working after all !!!! :D

I clicked to edit my post above to see my code and saw some weird characters in there, maybe because I'm using my iPhone to make the code changes.
But I tried to change with a different browser (opera) and the errors disappeared and the mod is working 100% like I want :D

Thank you alot mate, you are the king :)

--------------- Added 1313346050 at 1313346050 ---------------

nerbert, thank you for trying to help me mate, but I already have this working with the BirdOPrey's code :)

BirdOPrey5
08-14-2011, 05:21 PM
Glad it's working :up: