Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created October 16, 2025 20:35
Show Gist options
  • Save propertyhive/a6df579653d013ee8f0895e22f0a9676 to your computer and use it in GitHub Desktop.
Save propertyhive/a6df579653d013ee8f0895e22f0a9676 to your computer and use it in GitHub Desktop.
// assuming the id of the form is 'student'. If different change the filter name
add_filter( 'propertyhive_search_form_fields_after_student', 'edit_property_search_form_fields' );
function edit_property_search_form_fields($fields)
{
$fields['_let_type']['value'] = X; // Where X is the Let Type set for Student properties
return $fields; // return the fields
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment