Very nice - something so simple that I have overlooked but needed.
Cuts loading time and saves bandwidth of visitors.TY
I believe you can go one step further by combining both conditionals.
<if condition="$show['avatar'] AND $show['member']">
<if condition="$post['signature'] AND $show['member']">
SEE BELOW
This way, you avoid the extra </if> since its not needed
and saves a few characters of code in the process.
In your postbit and postbit_legacy
FIND:
PHP Code:
<if condition="$show['avatar']">
REPLACE WITH:
PHP Code:
<if condition="$show['avatar'] AND $show['member']">
FIND:
PHP Code:
<if condition="$post['signature']">
REPLACE WITH:
PHP Code:
<if condition="$post['signature'] AND $show['member']">