Thanks, yes it deletes the page id "-p {PAGE_ID}", but does not delete the city id
I found this code here on the forum and it suits me because I have a website for one region, but it displays cities along with id
<div class="location">
<?php $i_count=0;
while(osc_has_list_cities()) { ?>
<a href="<?php echo osc_search_url(array('sCity' => osc_list_city_name()));?>"><?php echo osc_list_city_name() ; ?> <em>(<?php echo osc_list_city_items() ; ?>)</em></a>
<?php $i_count++;
if ($i_count==25) {
break;
} } ?>
</div>
How to display cities without id?
Thank you