Thread: Registration
View Single Post
  #3  
Old 03-31-2004, 04:06 PM
 
Ozzie Ozzie is offline
 

Advanced Member
  
Join Date: Nov 2002
Location: Hobart, Tasmania, Australia
Posts: 41
 

Default State not showing in addresses

Hi Jeannie,

Thanks for this, sorry it has taken me so long to get back to you, I've been away since the original post.

My problem is with the State, not the country.

The mail/order_invoice.tpl is as follows:

{* $Id: order_invoice.tpl,v 1.9 2002/10/25 12:40:11 alfiya Exp $ *}
{config_load file="$skin_config"}
{$lng.lbl_order_id}: #{$order.orderid}
{$lng.lbl_order_date}: {$order.date|date_format:"%d.%m.%Y %H:%M"}
{$lng.lbl_order_status}: {$order.status}

{$lng.lbl_customer_info}:
---------------------
{$lng.lbl_first_name}: {$order.firstname}
{$lng.lbl_last_name}: {$order.lastname}
{$lng.lbl_phone}: {$order.phone}
{$lng.lbl_fax}: {$order.fax}
{$lng.lbl_email}: {$order.email}
{$lng.lbl_url}: {$order.url}

{$lng.lbl_billing_address}:
----------------
{$lng.lbl_address}: {$order.b_address}
{$lng.lbl_city}: {$order.b_city}
{$lng.lbl_state}: {$order.b_statename}
{$lng.lbl_country}: {$order.b_countryname}
{$lng.lbl_zip_code}: {$order.b_zipcode}

{$lng.lbl_shipping_address}:
-----------------
{$lng.lbl_address}: {$order.s_address}
{$lng.lbl_city}: {$order.s_city}
{$lng.lbl_state}: {$order.s_statename}
{$lng.lbl_country}: {$order.s_countryname}
{$lng.lbl_zip_code}: {$order.s_zipcode}

{include file="mail/order_data.tpl"}

- and my mail/signin_notification.tpl has this:

{* $Id: signin_notification.tpl,v 1.5 2002/10/25 12:40:11 alfiya Exp $ *}
{$lng.lbl_dear} {$userinfo.firstname}!

{$lng.eml_you_have_been_registered}

{$lng.lbl_your_profile}:
---------------------
{$lng.lbl_username}: {$userinfo.login}
{$lng.lbl_password}: {$userinfo.password}

{$lng.lbl_first_name}: {$userinfo.firstname}
{$lng.lbl_last_name}: {$userinfo.lastname}

{$lng.lbl_billing_address}:
{$lng.lbl_address}: {$userinfo.b_address}
{$lng.lbl_city}: {$userinfo.b_city}
{$lng.lbl_state}: {$userinfo.b_statename}
{$lng.lbl_country}: {$userinfo.b_countryname}
{$lng.lbl_zip_code}: {$userinfo.b_zipcode}
{$lng.lbl_shipping_address}:
{$lng.lbl_address}: {$userinfo.s_address}
{$lng.lbl_city}: {$userinfo.s_city}
{$lng.lbl_state}: {$userinfo.s_statename}
{$lng.lbl_country}: {$userinfo.s_countryname}
{$lng.lbl_zip_code}: {$userinfo.s_zipcode}
{$lng.lbl_phone}: {$userinfo.phone}
{$lng.lbl_fax}: {$userinfo.fax}
{$lng.lbl_email}: {$userinfo.email}
{$lng.lbl_url}: {$userinfo.url}

{include file="mail/signature.tpl"}

- It all looks like it SHOULD work, doen't it?

Ozzie
Reply With Quote