This file contains 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
add_action( 'wp_footer', function () { ?> | |
<script> | |
jQuery(document).ready(function(){ | |
jQuery(document).on('click', '.close-modal', function() { | |
jQuery('.santapress-post').find('video source').attr('src', ''); | |
jQuery('.santapress-post').find('video').remove(); | |
return false; | |
}); | |
}); |
This file contains 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
jQuery(document).ready(function( $ ){ | |
$(window).load(function() { | |
var searchParams = new URLSearchParams(window.location.search); | |
if(searchParams.has('sp_door_post')) { | |
var sp_door_post = searchParams.get('sp_door_post'); | |
var $door = $('.santapress-container').find('[data-postid='+sp_door_post+'] a.santapress-modal'); | |
$door.click(); | |
} | |
}); | |
}); |
This file contains 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
// Change Background | |
.santapress-post.modal { | |
background:red !important; border:0 !important | |
} | |
// Change Font for <h1> Title | |
.santapress-post.modal h1.santapress-title { | |
font-family: arial, sans-serif !important; | |
} |
This file contains 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
<div class="iframe-holder"> | |
<iframe id="booklynFrame" src="https://<IHRE_SUBDOMAIN>.booklyn.io/embed" width="100%" height="100" scrolling="no" style="border:0"></iframe> | |
<script src="https://booklyn.io/js/iframeResizer.min.js"></script> | |
<script> | |
iFrameResize({ log: false, heightCalculationMethod: 'lowestElement' }, '#booklynFrame'); | |
</script> | |
</div> |
This file contains 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
add_action( 'wp_head', function () { ?> | |
<script> | |
jQuery(document).ready(function($){ | |
$('.santapress-door.status-future:not(.preview)').css('pointer-events', 'auto').find('a').removeClass('santapress-modal'); | |
}); | |
</script> | |
<?php } ); |
This file contains 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
add_action( 'wp_head', function () { ?> | |
<script> | |
jQuery(document).ready(function($){ | |
// click on door and save open status to local storage | |
$('.santapress-door.status-publish:not(.preview)').click(function() { | |
var postid = $(this).data('postid'); | |
var opendoors = JSON.parse( window.localStorage.getItem('opendoors') ); | |
if(!opendoors) { | |
var opendoors = []; |
This file contains 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
add_action( 'wp_head', function () { ?> | |
<script> | |
jQuery(document).ready(function($){ | |
$('.santapress-door.status-publish:not(:last)').find('img').css('transform', 'perspective(1200px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-45deg)'); | |
}); | |
</script> | |
<?php } ); |
This file contains 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
body.santapress-snow-modal.modal-open .blocker:after { | |
-webkit-backface-visibility: hidden; | |
} |
This file contains 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
add_action( 'wp_head', function () { ?> | |
<script> | |
/* Audio file attribution | |
Merry Christmas sound effects from Air Media | |
www.airmedia.co | |
https://freesound.org/s/349855/ | |
This work is licensed under the Creative Commons 0 License. | |
*/ | |
This file contains 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
/* make 4 doors in a row */ | |
@media only screen and (max-width: 767px) { | |
.santapress-container .santapress-door { | |
width: 25% !important; | |
flex: 1 0 25% !important; | |
} | |
} | |
/* make 4 doors in a row without stretching the last element */ | |
@media only screen and (max-width: 767px) { |
NewerOlder