Skip to content

Instantly share code, notes, and snippets.

@itsjusteileen
Last active September 21, 2018 20:28
Show Gist options
  • Save itsjusteileen/3252149401132860ea3811eaddab3625 to your computer and use it in GitHub Desktop.
Save itsjusteileen/3252149401132860ea3811eaddab3625 to your computer and use it in GitHub Desktop.
Adds a PMPro Level Checkout button to the checkout page
<?php // do not include in Customizations plugin
/**
* Add PMPro Level Checkout button to checkout page.
*
* Add this code to a PMPro customization plugin.
*
*/
add_action( 'pmpro_checkout_after_level_cost', 'insert_pmpro_level_button' );
function insert_pmpro_level_button() {
echo 'Level 2 => ' . do_shortcode( '[pmpro_checkout_button level="2"]' );
echo ' | ';
echo 'Level 3 => ' . do_shortcode( '[pmpro_checkout_button level="3"]' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment