Skip to content

Instantly share code, notes, and snippets.

@DumahX
Created April 6, 2021 18:40
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 DumahX/9021224a078d8bde98458f69cc31d1be to your computer and use it in GitHub Desktop.
Save DumahX/9021224a078d8bde98458f69cc31d1be to your computer and use it in GitHub Desktop.
<?php
function mepr_change_stripe_checkout_desc( $desc, $payment ) {
if ( isset( $payment->settings->stripe_checkout_enabled ) && $payment->settings->stripe_checkout_enabled == 'on' ) {
$desc = "Pay with Apple Pay"; // Edit this.
}
return $desc;
}
add_filter( 'mepr_signup_form_payment_description', 'mepr_change_stripe_checkout_desc', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment