I am having problems getting this to work to show the state field for only US users, using the following code in skin1/mail/html/order_invoice.tpl
Code:
{if $userinfo.s_country eq "US"}
{if $_userinfo.default_fields.s_state}
<tr>
<td><b>{$lng.lbl_state}:</b> </td>
<td>{$order.s_statename}</td>
</tr>
{/if}
{/if}
Using the above code the state field does not show at all. Any idea why or what I need to change?
Thanks