Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dislokacia/c1f255b896d4ce759a513c63b709310a to your computer and use it in GitHub Desktop.
Save dislokacia/c1f255b896d4ce759a513c63b709310a 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');
});
});
@dislokacia
Copy link
Author

  1. https://prnt.sc/R1aaQtk0cx7d add the class "hide-listing" to provider
  2. https://prnt.sc/BDZF_tChBxOx add styles to Cutomizer
  3. https://prnt.sc/lvJoZdnt6D44 add js-code to the plugin for adding code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment