Do not forget to change your logo. Also, you can enable the selection of country during item post and item edit. I had disabled it in my theme because my site targets a single country. To enable the choosing of countries, you will need to edit item-post.php and item-edit.php.
In item-post, find
<input type="hidden" name="countryId" value="KE" />
Replace it with
<div class="row">
<label for="countryId"><?php _e('Country', 'modern'); ?></label>
<?php ItemForm::country_select(osc_get_countries(), osc_user()) ; ?>
</div>
In item-edit, find
<input type="hidden" name="countryId" value="KE" />
Replace it with
<div class="row">
<label for="countryId"><?php _e('Country', 'modern'); ?></label>
<?php ItemForm::country_select(osc_get_countries(), osc_user()) ; ?>
</div>