jQuery(document).ready(function($){
$(window).on('load', function(){
if ( $('#CustomerCompany_country_id').length ) {
$('#CustomerCompany_country_id').val(223).trigger('change');
}
});
});
From app you can't really do it, but you can do it from javascript as follows:
Create a file named app-custom.js and place it in /customer/assets/js folder
In the file, put this content:
Change 223 with the id of your country: http://pastebin.com/7Ke9wBVYCode:jQuery(document).ready(function($){ $(window).on('load', function(){ if ( $('#CustomerCompany_country_id').length ) { $('#CustomerCompany_country_id').val(223).trigger('change'); } }); });
Enjoy and please renew your support pack.