Created
November 14, 2024 11:44
-
-
Save propertyhive/405a3d70460fb1e33bced5843a60b9b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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