@mb themes
// ITEM LOOP FORMAT LOCATION
function bet_item_location($premium = false) {
if(!$premium) {
$loc = array_filter(array(osc_item_city(), (osc_item_city() == '' ? osc_item_region(): ''), osc_item_country_code()));
} else {
$loc = array_filter(array(osc_premium_city(), (osc_premium_city() == '' ? osc_premium_region() : ''), osc_premium_country_code()));
}
return implode(', ', $loc);
I have changed the region function to city here in the functions.php file, but my city didn't appear because of, when i go to the listing update at the admin, i see country , region , but city is blank. ?.
during posting i can select the city.
Any Idea./