Hi, anancuras.
Are you using a caching plugin or service? It would be worth clearing all server-side caches first if so.
If that doesn’t solve this, have you edited the plugin or theme files themselves? If so, you could:
1. Take a full site backup.
2. Temporarily revert to the default versions of the plugin and theme.
If the city field comes back on all posts in search results after reverting any changes you made, that suggests an edit to the plugin or theme has caused this.
If you’re currently editing the plugin directly, you could instead alter the labels using this method in your theme’s functions.php file:
add_filter( 'agentpress_property_details', 'custom_agentpress_property_details_filter' );
// Replace labels such as "ZIP" with "Postcode"
function custom_agentpress_property_details_filter( $details ) {
$details['col1'] = array(
__( 'Price:', 'apl' ) => '_listing_price',
__( 'Address:', 'apl' ) => '_listing_address',
__( 'City:', 'apl' ) => '_listing_city',
__( 'State:', 'apl' ) => '_listing_state',
__( 'ZIP:', 'apl' ) => '_listing_zip'
);
$details['col2'] = array(
__( 'MLS #:', 'apl' ) => '_listing_mls',
__( 'Square Feet:', 'apl' ) => '_listing_sqft',
__( 'Bedrooms:', 'apl' ) => '_listing_bedrooms',
__( 'Bathrooms:', 'apl' ) => '_listing_bathrooms',
__( 'Basement:', 'apl' ) => '_listing_basement'
);
return $details;
}
If you’re already doing that or need more help with this, please feel free to ask.