Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created October 28, 2016 21: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 thomasplevy/915e6c3523fcec72a01038f715480a28 to your computer and use it in GitHub Desktop.
Save thomasplevy/915e6c3523fcec72a01038f715480a28 to your computer and use it in GitHub Desktop.
<?php
/**
* Customize the text of the "Buy Now" button on the checkout screen
* @param string $text default text of the button
* @return string
*/
function my_llms_buy_button_text( $text ) {
return __( 'PURCHASE!', 'my-text-domain' );
}
add_filter( 'lifterlms_checkout_buy_button_text', 'my_llms_buy_button_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment