Skip to content

Instantly share code, notes, and snippets.

@ideadude
Created September 17, 2019 13:46
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 ideadude/a39c5b5e593f04845a7dd5104974f577 to your computer and use it in GitHub Desktop.
Save ideadude/a39c5b5e593f04845a7dd5104974f577 to your computer and use it in GitHub Desktop.
Post v2.1 TOS code in pages/checkout.php.
<?php
if ( isset( $_REQUEST['tos'] ) ) {
$tos = intval( $_REQUEST['tos'] );
} else {
$tos = "";
}
?>
<input type="checkbox" name="tos" value="1" id="tos" <?php checked( 1, $tos ); ?> /> <label class="pmpro_label-inline pmpro_clickable" for="tos"><?php printf(__('I agree to the %s', 'paid-memberships-pro' ), $tospage->post_title);?></label>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment