Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 24, 2025 13:34
Show Gist options
  • Save propertyhive/c50ff09bed1cf9b617aa5d5a359cf1b9 to your computer and use it in GitHub Desktop.
Save propertyhive/c50ff09bed1cf9b617aa5d5a359cf1b9 to your computer and use it in GitHub Desktop.
Remove address line 2 from being queried
add_filter( 'propertyhive_address_fields_to_query', 'custom_address_fields' );
function custom_address_fields( $address_fields_to_query)
{
if (($key = array_search('_address_two', $address_fields_to_query)) !== false)
{
unset($address_fields_to_query[$key]);
}
return $address_fields_to_query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment