I don't know why this code doesn't function well, but maybe we can reverse the method.... instead of assigning a condition against the "guest", we can assign a condition for members only....
we will use the same steps the coder did, as the following:
Open the
bbcode_code template and find:
PHP Code:
<div class="bbcode_description">{vb:rawphrase code}:</div>
and insert
below it:
PHP Code:
<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">
and will do the same to the rest of the codes....
meaning instead of adding this code:
PHP Code:
<vb:if condition="$show['guest']">
<pre class="bbcode_code">{vb:rawphrase hide_code}</pre>
<vb:else />
we will add this code for the allowed user groups:
PHP Code:
<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">
save the changes in each template and see whether it works or not...logically, it should work, but didn't test it...