How to add exact adress?

Screenshot 2023-01-02 at 1.12.40 AM

When I click on “List a property”, I need to add the location. But I can’t seem to add specific locations. Instead, I can only add street addresses? How do I fix this?

Additionally, I want to add a specific description to this. For e.g. “Please include specific address of your home”

Hi,

I recommend going through all the settings in HivePress/Settings, and making sure that you have the Hide the exact address option disabled.

Please try this PHP snippet:

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		if ( isset( $form['fields']['location'] ) ) {
			$form['fields']['location']['description'] = 'custom text here';
		}

		return $form;
	},
	1000
);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.