Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created October 31, 2016 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kraftbj/f8665b218e2751b375790e045f085c73 to your computer and use it in GitHub Desktop.
Save kraftbj/f8665b218e2751b375790e045f085c73 to your computer and use it in GitHub Desktop.
Stop application details from hiding
<?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