PDA

View Full Version : IF conditional concatenation help


Simon Lloyd
09-03-2011, 02:37 PM
Hi all, i'm trying to write an if condition to show an item to all usergroups except one but onlly in certain foorums, is this how it's done?
<if condition="!is_member_of($bbuserinfo, X)"AND if condition="in_array($forumid, array(X,Y,Z))">

kh99
09-03-2011, 02:44 PM
Almost, try this:

<if condition="!is_member_of($bbuserinfo, X) AND in_array($forumid, array(X,Y,Z))">

Simon Lloyd
09-03-2011, 02:59 PM
Thanks for your reply, i tried that (and my version) and i still cannot get the link im trying to show in the postbit!

Here's what i have<if condition="!is_member_of($bbuserinfo, 1) AND in_array($forumid, array(13,65,66,67,68,69,54,95))">
<a href="http://www.thecodecage.com/forumz/">Formula Language Convertor</a>
</if>

Badshah93
09-03-2011, 03:19 PM
try $post[forumid] in place of $forumid

Simon Lloyd
09-03-2011, 03:32 PM
Thanks for that too<if condition="!is_member_of($bbuserinfo, 1) AND in_array($post[forumid], array(13,65,66,67,68,69,54,95))">didn't do the trick neither, i have confirmed that i can show the div with the link by removing the condition but employing it makes it invisible!

Badshah93
09-03-2011, 03:40 PM
Ok try this (i have tested, its working fine)

<if condition="!is_member_of($bbuserinfo, 1) AND in_array($thread[forumid], array(4,2,3))">
//code
</if>

Simon Lloyd
09-03-2011, 03:52 PM
Yep that was it, thanks :)