Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created November 16, 2017 16:02
Show Gist options
  • Save djrmom/527fec771428ce116137456e32d652aa to your computer and use it in GitHub Desktop.
Save djrmom/527fec771428ce116137456e32d652aa to your computer and use it in GitHub Desktop.
facetwp hide/show map
<?php
/**
* initially hide the map facet ( .facetwp-facet-map ) and toggle visibility on click of .show_map
*
*/
add_action( 'wp_head', function() { ?>
<style>
.facetwp-facet-map {display: none; }
</style>
<script>
(function($) {
$(document).ready(function() {
$( ".show_map" ).click(function () {
$(".facetwp-facet-map").toggle( "slow" );
});
});
})(jQuery);
</script>
<?php });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment