
Originally Posted by
DivaVocals
hahaha. Yeah it's been a LOOOOONG time no see for me. I miss hanging out here.. :) I got a job with an AMAZING org as a technical project manager for a mobile app project that SAVES LIVES. (Look up Guardian Connect - Android & iOS) That gig and the ones that followed required me to sorta step back on some of my side ventures. I've retained my long time clients, but had to stop accepting new work.. While I'd like to think I'm every woman, apparently I'm not!! **lol**
Anyway.. @rbarbour I did indeed edit that file, but the entire country field disappeared. So I'm sure my editing is off.. What I want to do is to move the country field just below the name fields. I want the country placed before entering the address as some of the state/regional fields are dependent on the country selection. Our usability testers are asking suggesting we make this change. HELP por favor?? :)
Crystal,
I hope doing all that work for for Android & iOS apps hasn't blurred your memory that much.
, I'm glad you are doing well! I still have that $200 bottle of Vodka and visiting Vegas in Oct. 
anywhoooooo, my lines may be off here and look different but here goes.
line 98, find:
PHP Code:
$field_name = "zone_country_id[$which]";
$field_id = "country-$which";
?>
<label class="inputLabel" for="country-bill"><?php echo ENTRY_COUNTRY; ?><?php if (zen_not_null(ENTRY_COUNTRY_TEXT)) echo '<span class="alert">' . ENTRY_COUNTRY_TEXT . '</span>';?></label>
<?php echo zen_get_country_list($field_name, $address['country'], "id=\"$field_id\""); ?>
<div class="p-2"></div>
copy and replace with:
paste the copied php on line 64, after
PHP Code:
ENTRY_COMPANY_MIN_LENGTH, ENTRY_COMPANY_TEXT);
}
then add:
directly afer so the pasted code looks like:
PHP Code:
$field_name = "zone_country_id[$which]";
$field_id = "country-$which";
?>
<label class="inputLabel" for="country-bill"><?php echo ENTRY_COUNTRY; ?><?php if (zen_not_null(ENTRY_COUNTRY_TEXT)) echo '<span class="alert">' . ENTRY_COUNTRY_TEXT . '</span>';?></label>
<?php echo zen_get_country_list($field_name, $address['country'], "id=\"$field_id\""); ?>
<div class="p-2"></div>
<?php
Hope that helps!!!
Bookmarks