Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Crocoblock/a6478cb38ef12785d65b6be80c965672 to your computer and use it in GitHub Desktop.

Select an option

Save Crocoblock/a6478cb38ef12785d65b6be80c965672 to your computer and use it in GitHub Desktop.
Hide Listing Grid widget before filtering
.hide-listing {
visibility: hidden;
height: 0;
}
jQuery( document ).ready(function( $ ) {
$( document ).on( 'jet-filter-content-rendered', function() {
$( '.hide-listing' ).removeClass( 'hide-listing' );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment