Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Note we're using 'default' as the identifier. Update this accordingly
  2. add_filter( 'propertyhive_search_form_fields_default', 'edit_default_property_search_form_fields' );
  3.  
  4. function edit_default_property_search_form_fields($fields)
  5. {
  6. $fields['department']['type'] = 'hidden';
  7.  
  8. return $fields; // return the fields
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement