mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-07-15 21:34:26 +08:00
https://developers.learndash.com/snippet/change-use-a-credit-card-text-in-stripe-integration-addon/
4 lines
134 B
Text
4 lines
134 B
Text
add_filter( 'learndash_stripe_purchase_button_text', function() {
|
|
// Default is 'Use a Credit Card'
|
|
return 'Use Stripe';
|
|
} );
|