Thanks for the quick response, I can't seem to get that code working though. Here's what I have:
A custom field, of 'single-selection radio button' type. It has three options 'one', 'two' and 'three.
The code I added to my postbit template:
PHP Code:
<vb:if condition="$post['field13'] == 1">
One selected
<vb:if condition="$post['field13'] == 2">
Two selected
<vb:else />
Something other than one or two selected
</vb:if>
I have got option 1 ('one') selected but the test that's returned in the page is "Something other than one or two selected"