no problems
I understand now, if you just want to display just the Zip field, go to to the plugin folder, then classes and then simplemap.php
Locate
// Normal Field inputs
$ffi[‘street’] = array( ‘label’ => apply_filters( ‘sm-search-label-street’, __( ‘Street: ‘, ‘SimpleMap’ ), $post ), ‘input’ => ‘<input type=”text” id=”location_search_address_field” name=”location_search_address” value=”‘ . esc_attr( $address_value ) . ‘” />’ );
$ffi[‘city’] = array( ‘label’ => apply_filters( ‘sm-search-label-city’, __( ‘City: ‘, ‘SimpleMap’ ), $post ), ‘input’ => ‘<input type=”text” id=”location_search_city_field” name=”location_search_city” value=”‘ . esc_attr( $city_value ) . ‘” />’ );
$ffi[‘state’] = array( ‘label’ => apply_filters( ‘sm-search-label-state’, __( ‘State: ‘, ‘SimpleMap’ ), $post ), ‘input’ => ‘<input type=”text” id=”location_search_state_field” name=”location_search_state” value=”‘ . esc_attr( $state_value ) . ‘” />’ );
$ffi[‘zip’] = array( ‘label’ => apply_filters( ‘sm-search-label-zip’, __( ‘Zip: ‘, ‘SimpleMap’ ), $post ), ‘input’ => ‘<input type=”text” id=”location_search_zip_field” name=”location_search_zip” value=”‘ . esc_attr( $zip_value ) . ‘” />’ );
$ffi[‘country’] = array( ‘label’ => apply_filters( ‘sm-search-label-country’, __( ‘Country: ‘, ‘SimpleMap’ ), $post ), ‘input’ => ‘<input type=”text” id=”location_search_country_field” name=”location_search_country” value=”‘ . esc_attr( $country_value ) . ‘” />’ );
$ffi[’empty’] = array( ‘label’ => ”, ‘input’ => ” );
$ffi[‘submit’] = array( ‘label’ => ”, ‘input’ => ‘<input type=”submit” value=”‘ . apply_filters( ‘sm-search-label-search’, __(‘Search’, ‘SimpleMap’), $post ) . ‘” id=”location_search_submit_field” class=”submit” />’ );
$ffi[‘distance’] = $this->add_distance_field( $radius_value, $units );
and comment out (or delete) the fields that you don’t want to
I can’t remember but since I think since it is using a table for displaying this fields, you need to play with the CSS as well
I didn’t want any categories so I commented out that field, but I assume what you need to do is go to the simplemap.php and write the code for the downdown list instead of box field
Cheers