Skip to content

Instantly share code, notes, and snippets.

@femiyb
Last active April 17, 2020 15:31
Show Gist options
  • Save femiyb/ee0cc450e804be77ad2301ff87de8b9f to your computer and use it in GitHub Desktop.
Save femiyb/ee0cc450e804be77ad2301ff87de8b9f to your computer and use it in GitHub Desktop.
Toggle checkbox
<?php
add_action( 'wp_head', function () {
if($post->ID == $pmpro_pages['checkout'])
{
?>
<script>
/* JavaScript code here */
window.onload = function() {
document.getElementById("additional_lists_1").checked = true;
}
</script>
<?php } } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment