I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

Reply To: Change Button Text

dashed-slug.net Forums Tip the Author extension support Change Button Text Reply To: Change Button Text

#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