Tried it and it threw out an error. I used exactly what I wrote in the post above yours.
The following error occurred when attempting to evaluate this template:
An empty or invalid 'if' condition was found.
EDIT: Tried <vb:if condition="THIS_SCRIPT == 'album'">Content here</vb:if> and it worked, but I've run into another problem. Apparently you can't nest if/else conditionals or I did it incorrectly. Is there another way to accomplish this? I only want the FB connect button to show up to logged in users, but for some reason when you log out it still thinks you're a logged in user and shows the Connect button anyways. This is what I tried:
Code:
<!-- If Template=Login then hide FB Connect Button -->
<vb:if condition="THIS_SCRIPT == 'login'"> <vb:else>
<!-- Only show the FB Connect button to logged in users -->
<vb:if condition="$bbuserinfo['userid'] == 0">
<span style="display:none"> </span>
<vb:else />
<li id="fb_headerbox" class="hidden">
<vb:if condition="$show['facebookuser']">
<a id="fb_link" href="{vb:raw profileurl}">
<img id="fb_squarepic" width="16" height="16" alt="{vb:rawphrase facebook_connect}" src="{vb:raw squarepicurl}" />
<img id="fb_icon" width="14" height="14" alt="{vb:rawphrase facebook_connect}" src="{vb:stylevar imgdir_misc}/facebook.gif" />
</a>
<vb:else />
<a id="fb_loginbtn" href="#"><img src="{vb:stylevar imgdir_misc}/facebook_login.gif" alt="{vb:rawphrase facebook_connect}" /></a>
</vb:if>
</li>
<!-- Closing IF from FB Connect above for logged in users -->
</vb:if>
<!-- Closing IF from FB Connect Template Hide -->
</vb:if>
EDIT@: Can I dd an AND or an OR to this conditional to exclude this template?
<vb:if condition="$bbuserinfo['userid'] == 0">
EDIT3: I tried <vb:if condition="$show['member']"> instead of <vb:if condition="$bbuserinfo['userid'] == 0">
and it's working now

Thanks Lynne for working me through it.
Could you please take a look at another
problem I'm having in regards to none of the human verification questions working? Also please mark this thread Solved