Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Last active October 12, 2016 23:21
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 thomasplevy/6487c79df1fff8245a16ac2a3925bb18 to your computer and use it in GitHub Desktop.
Save thomasplevy/6487c79df1fff8245a16ac2a3925bb18 to your computer and use it in GitHub Desktop.
<?php // don't copy this line to your functions.php file
/**
* Output custom html after the LifterLMS Checkout Form
*/
function my_custom_content() {
echo '<h5>Secure Checkout secured by super secret enryption protocols!</h5>'; // add a little lock icon too, amirite?
}
// add the action
add_action( 'lifterlms_after_checkout_form', 'my_custom_content' );
<?php // don't copy this line to your functions.php file
/**
* Output custom html after the LifterLMS Checkout Form
*/
function my_custom_content() {
echo '<p>Enter your billing information below to continue!</p>'; // because we all know users get easily lost...
}
// add the action
add_action( 'lifterlms_before_checkout_form', 'my_custom_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment