Here is the screenshot image https://postimg.org/image/ewge7ramt/
I’m using code combined from your documentation and support.
add_filter( 'adverts_form_load', 'location_to_dropdown' );
function location_to_dropdown( $form ) {
if( $form['name'] != 'search' ) {
return $form;
}
foreach( $form["field"] as $key => $field ) {
if( $field["name"] == "location" ) {
$field["type"] = "adverts_field_select";
$field["empty_option"] = 1;
$field["empty_option_text"] = "Seluruh Pahang";
$field["options"] = array(
array("value" => "Bentong", "text" => "Bentong"),
array("value" => "Bera", "text" => "Bera"),
array("value" => "Cameron Highlands", "text" => "Cameron Highlands"),
array("value" => "Chenor", "text" => "Chenor"),
array("value" => "Jengka", "text" => "Jengka"),
array("value" => "Jerantut", "text" => "Jerantut"),
array("value" => "Kuantan", "text" => "Kuantan"),
array("value" => "Kuala Lipis", "text" => "Lipis"),
array("value" => "Maran", "text" => "Maran"),
array("value" => "Muadzam Shah", "text" => "Muadzam Shah"),
array("value" => "Pekan", "text" => "Pekan"),
array("value" => "Raub", "text" => "Raub"),
array("value" => "Rompin", "text" => "Rompin"),
array("value" => "Temerloh", "text" => "Temerloh"),
// more options here
);
$form["field"][$key] = $field;
}
}
return $form;
}