I have this code
PHP Code:
<vb:if condition="is_member_of($post, 6, 69)">
<div class="targhetta admin"><span class="orecchie"></span><span class="text">Amministratore</span></div>
<br style="content: ' '; display: block; margin-top: 5px;" />
</vb:if>
<vb:if condition="is_member_of($post, 5)">
<div class="targhetta smod"><span class="orecchie"></span><span class="text">Supermoderatore</span></div>
<br style="content: ' '; display: block; margin-top: 5px;" />
</vb:if>
<vb:if condition="is_member_of($post, 7)">
<div class="targhetta mod"><span class="orecchie"></span><span class="text">Moderatore</span></div>
<br style="content: ' '; display: block; margin-top: 5px;" />
</vb:if>
I want to create a custom template and call it in postbit_legacy and memberinfo, how can I do this?