Skip to content

Instantly share code, notes, and snippets.

@femiyb
Created February 19, 2020 17:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save femiyb/041f6750ded8b957f71855f3f1c863a5 to your computer and use it in GitHub Desktop.
Save femiyb/041f6750ded8b957f71855f3f1c863a5 to your computer and use it in GitHub Desktop.
<?php
/**
* Adds text after the level cost text.
* Add this code below to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function add_text_before_submit() {
echo 'Add additional text here';
}
add_action( 'pmpro_checkout_after_level_cost', 'add_text_before_submit' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment