Customize the text of the Buy Now button on the checkout screen in LifterLMS

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' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.