maxibelino wrote:
QUOTE:
1. is there a way to set a default Country when filling the data for a property? (so i don't have to select my country each time i add a property)
The answer to your first question in the following:
(remember this example keeps only one country-- Spain)
step 1)
Edit:yoursite/components/languages/english.php at line 667:
// country ISO codes for EA (& MAP24.com support)
DEFINE('_COUNTRY_AF','Afghanistan'

;
DEFINE('_COUNTRY_AX','Aland Islands'

;
DEFINE('_COUNTRY_AL','Albania'

;
## and all the other DEFINE('_COUNTRY that follow.......delete or uncomment all except the one(s) you want and leave just:
// country ISO codes for EA (& MAP24.com support)
DEFINE('_COUNTRY_ES','Spain'

;
step 2)
Edit:yoursite/components/includes/country.inc.php at line 18:
$countries = array(
"AF" => _COUNTRY_AF,"AL" => _COUNTRY_AL,"DZ" => _COUNTRY_DZ,"AS" =>
## and all the others that follow##
);
?>
replace with:
$countries = array(
"ES" => _COUNTRY_ES
);
?>
The second question I guess has to do with your template size, thumbnail sizes etc.
cheers