Code-Snippets-Functions/Execute a function on a child site/LifterLMS/customize-checkout-buy-button-text.txt

4 lines
170 B
Text

function my_llms_buy_button_text( $text ) {
return __( 'PURCHASE!', 'my-text-domain' );
}
add_filter( 'lifterlms_checkout_buy_button_text', 'my_llms_buy_button_text' );