Created
November 16, 2017 16:02
-
-
Save djrmom/527fec771428ce116137456e32d652aa to your computer and use it in GitHub Desktop.
facetwp hide/show map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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