dashed-slug.net › Forums › Tip the Author extension support › Change Button Text › Reply To: Change Button Text
April 14, 2021 at 8:42 am
#10375
alexg
Keymaster
Certainly,
You can use the following:
add_filter(
'wallets_tips_ui_message',
function( $text ) {
return 'YOUR TEXT HERE';
},
20
);
The original filter is in frontend.php
, function filter_wallets_tips_ui_message()
with regards