Created
October 31, 2016 15:42
-
-
Save kraftbj/f8665b218e2751b375790e045f085c73 to your computer and use it in GitHub Desktop.
Stop application details from hiding
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
<?php // Do not include this line | |
add_action( 'wp_head', 'bk_unhide_app_details' ); | |
function bk_unhide_app_details(){ ?> | |
<script type="text/javascript"> | |
jQuery(window).load( function() { | |
jQuery( '.application_details' ).show(); | |
jQuery( '.application_button' ).click(function() { | |
}); | |
}); | |
</script><?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment