Skip to content

Instantly share code, notes, and snippets.

@be-mohand
Last active September 2, 2020 12:07
Show Gist options
  • Save be-mohand/bcc5ec022d33bbb90af5316442291e34 to your computer and use it in GitHub Desktop.
Save be-mohand/bcc5ec022d33bbb90af5316442291e34 to your computer and use it in GitHub Desktop.
Hide price range filter on search page
$(document).ready(function() {
// Hide the prive range filter if exists
if($('.price_filter_side').length > 0) {
$('.price_filter_side').remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment