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
[scroll_trigger id="123"] |
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
[pum_age_form type="enterexit" required_age="18" lockout_enabled="1" lockout_count="1" exit_url="http://www.disney.com" label_enter="I'm good." label_exit="No, get me outta here!"] |
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
/* To help attract attention straight to the discount */ | |
@keyframes discount-text { | |
0% {color: rgba(0,0,0,0);left:-50px;transform:rotate(45deg);} | |
100% {color: white;left:0px;transform:rotate(0deg);} | |
} | |
@-moz-keyframes discount-text { | |
0% {color: rgba(0,0,0,0);left:-50px;-moz-transform:rotate(45deg);} | |
100% {color: white;left:0px;-moz-transform:rotate(0deg);} |
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
/* some dec looking input fields */ | |
#popmake-216 input { | |
height: 28px; | |
border-radius: 2px; | |
margin-left: 8px; | |
font-size: 14px; | |
outline-color:#303030; | |
} |
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
<a href="javascript:jQuery('#popmake-123').popmake('open')">Sign Up For Our Newsletter!</a> |
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 | |
// Copy everything below this line // | |
function my_allowed_protocols ( $protocols ) { | |
$protocols[] = "javascript"; | |
return $protocols; | |
} | |
add_filter( 'kses_allowed_protocols', 'my_allowed_protocols' ); |