Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save propertyhive/13bf3b8176f67a7a684acdb6f11a884e to your computer and use it in GitHub Desktop.

Select an option

Save propertyhive/13bf3b8176f67a7a684acdb6f11a884e to your computer and use it in GitHub Desktop.
add_filter( 'propertyhive_search_form_action', 'set_search_form_action' );
function set_search_form_action($action)
{
if ( isset($_GET['department']) && $_GET['department'] == 'residential-lettings' )
{
return '/lettings/';
}
return '/sales/';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment