I'm totally lost. Sorry... This stuff makes me feel like I should have payed more attention when I was in college?
Currently... we have many "club" forums, and the code is like this:
Code:
<!-- Begin Dive clubs -->
<if condition="$GLOBALS[forumid] == 458 AND !is_member_of($bbuserinfo, 76)">
<!-- AZScuba -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF"><phrase 1="$foruminfo[title]">$vbphrase[private_club]</phrase></div><br />
</if>
<if condition="$GLOBALS[forumid] == 459 AND !is_member_of($bbuserinfo, 78)">
<!-- Barangay Pasaway -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF"><phrase 1="$foruminfo[title]">$vbphrase[private_club]</phrase></div><br />
</if>
<if condition="$GLOBALS[forumid] == 247">
<!-- Business to Business -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF"><phrase 1="$foruminfo[title]">$vbphrase[private_club_b2b]</phrase></div><br />
</if>
<if condition="$GLOBALS[forumid] == 479 AND !is_member_of($bbuserinfo, 88)">
<!-- Deep South DIR -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF"><phrase 1="$foruminfo[title]">$vbphrase[private_club]</phrase></div><br />
</if>
I need to get to this (obviously tweaked a bit):
Code:
<!-- Begin Dive clubs -->
<vb:if condition="$GLOBALS[forumid] == 458 AND !is_member_of($bbuserinfo, 76)">
<!-- AZScuba -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF">{vb:rawphrase private_club}</div><br />
</vb:if>
<vb:if condition="$GLOBALS[forumid] == 459 AND !is_member_of($bbuserinfo, 78)">
<!-- Barangay Pasaway -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF">{vb:rawphrase private_club}</div><br />
</vb:if>
<vb:if condition="$GLOBALS[forumid] == 247">
<!-- Business to Business -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF">{vb:rawphrase private_club_b2b}</div><br />
</vb:if>
<vb:if condition="$GLOBALS[forumid] == 479 AND !is_member_of($bbuserinfo, 88)">
<!-- Deep South DIR -->
<div style="border:solid black 1px;padding:15px;background-color:#6699FF">{vb:rawphrase private_club}</div><br />
</vb:if>
and do I need to change the actual phrase as well, to change the {1} references in the phrase? I'm not a real coder, just the guy who has to do this for my forum.