The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Help with a simple piece of code?
Hello all ...
I'm not a coder, so if anyone could help me with this addition to a mod, I'd appreciate it ... I have the following code in a template .. Quote:
Now, what can I add that causes the small i icon for IP lookup NOT to appear at the bottom of a post for specific userID's that I list in an array. In other words, I don't want the icon to appear in the postbit for certain useID's, regardless of whether the user group can see them or not. I hope I explained that ok .. I would think that it's a simple piece of HTML code to add to this template, so that it excludes specific User ID's and doesn't execute, but rather just returns to the bottom of the code? If the template above is the wrong place to put the UserID exclusion, then perhaps it belongs in the "Show Postbit Icon" PLUGIN for the mod. Quote:
Thanks for any feedback .. Regards, Doug |
#2
|
|||
|
|||
Anyone able to help?
Even if it's just the HTML line that logically says: If the vBulletin userid number equals (x,y,z) then do not execute the following code ... If I had that much, I could probably figure it out myself from there on .. Thanks for any help ... Regards, Doug |
#3
|
||||
|
||||
Do something like:
HTML Code:
<vb:if condition="is_member_of($bbuserinfo,5,6,7,9,10) AND !in_array($bbuserinfo['userid'], array(x,y,z))">
|
#4
|
|||
|
|||
Quote:
Very gracious of you ... I will try that and let you know, but I do see how you've captured what I need in one line of code, even though I'm an old Fortan programmer left over from the 1960's. Regards, Doug --------------- Added [DATE]1291489730[/DATE] at [TIME]1291489730[/TIME] --------------- Ok, I tried that ... The problem is that it's excluding any userID in the array from seeing the IP Icon mentioned on any other member's post. I think I have the check I'm trying to get in the wrong place and perhaps it should actually be in the PLUGIN shown? I want to have any member who is in the userID array, to NOT have their own IP icon shown to other members, effectively letting them OPT OUT of having it displayed due to privacy concerns. Am I explaining that any better? Thanks again ... Regards, Doug |
#5
|
||||
|
||||
I don't fully understand the condition. I think what you may be wanting to do is substitute $post['userid'] instead of $bbuser['userid']. Then you are looking at the userid of the person who's post it is.
|
#6
|
|||
|
|||
My apologies for the lack of clarity ....
The mod displays an icon at the bottom of EVERY post, that effectively let's members of specific user groups ie: <vb:if condition="is_member_of($bbuserinfo,5,6,7,9,10) see that icon. When they click on it, they can view a Google Map of the user's IP location and it's pretty accurate. Some members have asked if they could OPT OUT of having that icon displayed at the bottom of their posts, so I thought (perhaps incorrectly), that I could add another condition to the mod that would ONLY display that IP icon at the bottom of any posts if the user id WAS NOT in the !in_array($bbuserinfo['userid'], array(x,y,z))"> Effectively, the IP icon would not appear (the mod doesn't execute) if they are a member of that array group. Does that help Lynne? I think the condition to OPT OUT probably belongs in the PLUGIN shown in the first post instead of the template shown? Although, perhaps you're right and I should be checking to see if the post ID belongs to a certain userid and therefore it wouldn't show the IP icon for only those member's posts? Thanks again ... Regards, Doug |
#7
|
||||
|
||||
The opt out can go in either place. I think, as I suggested above, that you want to use $post['userid'] instead of $bbuserinfo['userid'] since the condition is related to the userid of the poster, not the viewer.
|
#8
|
|||
|
|||
Quote:
So, for clarity ... If I place this at the start of a sequence of code: <vb:if condition="is_member_of($bbuserinfo,5,6,7,9,10) AND !in_array($post['userid'], array(2,12751))"> code to execute </vb:if> ... then only Usergroups 5,6,7,9,10 plus ANY user who is NOT Userid 2 or 12751 will have the code executed? Anyone else would skip past the </vb:if> to any code after it ... correct? Regards, Doug Edit: Follow up Lynne ... added the code as you suggested changing to $post['userid'] and it worked PERFECT !... thank you very much for your help ... :up: |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|