Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created November 14, 2024 11:44
Show Gist options
  • Save propertyhive/405a3d70460fb1e33bced5843a60b9b7 to your computer and use it in GitHub Desktop.
Save propertyhive/405a3d70460fb1e33bced5843a60b9b7 to your computer and use it in GitHub Desktop.
add_filter( 'propertyhive_search_form_fields_after', 'remove_address_three_hidden', 10, 1 );
function remove_address_three_hidden($form_controls)
{
if (isset($form_controls['address_three'])) { unset($form_controls['address_three']); }
return $form_controls;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment