check out this link for a the functions that you can use to return specific parts of the address:
http://plugins.svn.ww.wp.xz.cn/the-events-calendar/tags/2.0/template-tags.php
functions to look for:
tribe_get_address
tribe_get_city
tribe_get_stateprovince
tribe_get_state
tribe_get_zip
it’s a error with the jquery code that is checking to make sure that all required fields have been assigned. The way jquery checks these values may have changed from previous versions, but I was able to fix the checks by replacing the following code in ‘settings.php’
original:
if (jQuery(this).attr(“selected”) == true) {
updated
if (jQuery(this).attr(“selected”) == ‘selected’) {
You will need to change this for each field that it is checking for, and the run importer button will not be removed.