Customize the text of the Buy Now button on the checkout screen in LifterLMS on child sites.
Snippet Type
Execute on Child Sites
Snippet
function my_llms_buy_button_text( $text ) {
return __( 'PURCHASE!', 'my-text-domain' );
}
add_filter( 'lifterlms_checkout_buy_button_text', 'my_llms_buy_button_text' );