Off the record!!!
I will tell you how i would do it, this is most probably not a good idea for everybody but it may work for you.
Back up the file you edit!!! Always.
go to "tpl_create_account_default.php" in your template folder
by default it will be
"includes/templates/template_default/templates/tpl_create_account_default.php"
look for this code
PHP Code:
<?php echo zen_draw_input_field('street_address', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_street_address', '40') . ' id="street-address"') . (zen_not_null(ENTRY_STREET_ADDRESS_TEXT) ? '<span class="alert">' . ENTRY_STREET_ADDRESS_TEXT . '</span>': ''); ?>
right after 'street_address' you will see an empty ''; put in what ever you would like the default value should be
ex: 'this address';
scroll a bit then do the same
at
PHP Code:
<?php echo zen_draw_input_field('suburb', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_suburb', '40') . ' id="suburb"') . (zen_not_null(ENTRY_SUBURB_TEXT) ? '<span class="alert">' . ENTRY_SUBURB_TEXT . '</span>': ''); ?>
right after 'suburb',
then after it
PHP Code:
<?php echo zen_draw_input_field('city', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_city', '40') . ' id="city"') . (zen_not_null(ENTRY_CITY_TEXT) ? '<span class="alert">' . ENTRY_CITY_TEXT . '</span>': ''); ?>
after 'city',
and after 'state', (you must disable the drop down in configuration>customer details)
and set the country to default the country you want
Enjoy and please be careful (I'm not responsible for any mess)
BACKUP BACKUP BACKUP