Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active October 17, 2015 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/cff1f35d8cac16890c8e to your computer and use it in GitHub Desktop.
Save mgibbs189/cff1f35d8cac16890c8e to your computer and use it in GitHub Desktop.
<?php
function my_facetwp_sort_options( $options, $params ) {
if ( 'buy_sell_grid' == $params['template_name'] ) {
unset( $options['distance'] );
}
return $options;
}
add_filter( 'facetwp_sort_options', 'my_facetwp_sort_options', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment