Country Full Names not showing up in 2.0.8

Country Full Names not showing up in orders in 2.0.8 just the 2 letter abbreviations. How do I bring back the full country name?

[quote name=‘Compact Discount’]Country Full Names not showing up in orders in 2.0.8 just the 2 letter abbreviations. How do I bring back the full country name?[/QUOTE]



I received from support

in file “profiles_info.tpl” from "skins/basic/admin/views/profiles/components



this part

```php {if $user_data.b_city || $user_data.b_state || $user_data.b_zipcode}

{$user_data.b_city} {$user_data.b_state} {$user_data.b_zipcode}



{/if}

{if $user_data.b_country}

{$user_data.b_country}

{/if} ```



to



```php {if $user_data.b_city || $user_data.b_state || $user_data.b_zipcode}

{$user_data.b_city} {$user_data.b_state_descr} {$user_data.b_zipcode}



{/if}

{if $user_data.b_country}

{$user_data.b_country_descr}

{/if} ```



and this part

```php {if $user_data.s_city || $user_data.s_state || $user_data.s_zipcode}

{$user_data.s_city} {$user_data.s_state} {$user_data.s_zipcode}

{/if}

{if $user_data.s_country}

{$user_data.s_country}

{/if}

{include file=“views/profiles/components/profile_fields_info.tpl” fields=$profile_fields.S} ```



to



```php {if $user_data.s_city || $user_data.s_state || $user_data.s_zipcode}

{$user_data.s_city} {$user_data.s_state_descr} {$user_data.s_zipcode}

{/if}

{if $user_data.s_country}

{$user_data.s_country_descr}

{/if}

{include file=“views/profiles/components/profile_fields_info.tpl” fields=$profile_fields.S} ```



and the same problem with email - admin and customers see only code, change file invoice.tpl from email folders

ptahin,

Thank you very much that worked.

I see slightly different terms for the mail template.



Also I want to have only teh country not state be spelled out.



Any ideas?