Skip to content

Instantly share code, notes, and snippets.

@g-maclean
Created July 27, 2026 13:13
Show Gist options
  • Select an option

  • Save g-maclean/1e4dc547009389b62e1958269189a327 to your computer and use it in GitHub Desktop.

Select an option

Save g-maclean/1e4dc547009389b62e1958269189a327 to your computer and use it in GitHub Desktop.
Property Hive - Make property type multiselect
add_action('wp_footer', function () {
?>
<script>
jQuery(function ($) {
$(document).on('ph:toggleSearchDepartment', function () {
$('#property_type')
.attr('multiple', true)
.attr('name', 'property_type[]');
});
});
</script>
<?php
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment