I figured it out and now the title is working along with everything else.
I had to modify the source slightly for the title fields in register_ personal/billing/shipping _address.tpl
register_personal_address.tpl:
Find:
Code:
<OPTION {if $userinfo.title eq $name_titles[title]}selected{/if}>{$name_titles[title]}</OPTION>
Replace with:
Code:
<OPTION{if $userinfo.title eq $name_titles[title]} selected{/if} value="{$name_titles[title]}">{$name_titles[title]}</OPTION>
For register_billing_address.tpl:
Find:
Code:
<OPTION {if $userinfo.b_title eq $name_titles[title]}selected{/if}>{$name_titles[title]}</OPTION>
Replace with:
Code:
<OPTION{if $userinfo.b_title eq $name_titles[title]} selected{/if} value="{$name_titles[title]}">{$name_titles[title]}</OPTION>
For register_shipping_address.tpl:
Find:
Code:
<OPTION {if $userinfo.s_title eq $name_titles[title]}selected{/if}>{$name_titles[title]}</OPTION>
Replace with:
Code:
<OPTION{if $userinfo.s_title eq $name_titles[title]} selected{/if} value="{$name_titles[title]}">{$name_titles[title]}</OPTION>