Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andrewlimaza/d318ec817522762f62f7fa27b3589538 to your computer and use it in GitHub Desktop.
Save andrewlimaza/d318ec817522762f62f7fa27b3589538 to your computer and use it in GitHub Desktop.
Add text before submit button in Paid Memberships Pro
<?php
/**
* Adds text before the submit button on the checkout page.
* 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 'Credit Card & PayPal Payments';
}
add_action( 'pmpro_checkout_before_submit_button', 'add_text_before_submit' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment