Yes, that indeed solved my problem.
For those who also want more/different locations in the footer, go to oc-content/themes/delta/footer.php , and find the following section:
<div class="box b2">
<h4><?php _e('Popular locations', 'delta'); ?></h4>
And replace the following code:
<?php
$regions = RegionStats::newInstance()->listRegions('%%%%', '>', 'i_num_items DESC');
$i = 1;
?>
with this one:
<?php if (osc_count_list_countries()== 1 && osc_count_list_regions() > 1) { ?>
<?php View::newInstance()->_exportVariableToView('list_cities', CityStats::newInstance()->listCities("", ">", "items DESC")); ?>
and also replace the following code:
<?php if(is_array($regions) && count($regions) > 0) { ?>
<?php foreach($regions as $r) { ?>
<?php if($i <= 10) { ?>
<li><a href="<?php echo osc_search_url(array('page' => 'search', 'sRegion' => $r['pk_i_id']));?>"><?php echo $r['s_name']; ?></a></li>
<?php $i++; ?>
<?php } ?>
<?php } ?>
<?php } ?>
with this one:
<?php $i = 1; ?>
<?php while(osc_has_list_cities()) { ?>
<?php if($i > 20) { break; } ?>
<li><a href="<?php echo osc_search_url(array('sCity' => osc_list_city_name()));?>"><?php echo osc_list_city_name();?></a> <em>(<?php echo osc_list_city_items();?>)</em></li>
<?php $i++; ?>
<?php } ?>
<?php } ?>