mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
4 lines
170 B
Text
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' );
|