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!
-
Hello,
It looks like you are 90% there.
I believe the problem is that you are first trying to bind the function and then you define that function. Also, you don’t need str_replace. Try something like:
function change_text($comment) {
$comment = "leave a message";
return $comment;
}
add_filter( 'wallets_ui_text_comment' , 'change_text');
The reason you just get a blank page and not an error message is that you have not enabled errors. If you try the above and it still does not work, follow the instructions here: https://codex.wordpress.org/Debugging_in_WordPress to enable logging.
Let me know if you still have problems with this.
kind regards
AnonymousInactive
You are a legend, worked perfectly. I have absolutely no idea how you did all this by yourself, but please don’t stop. 😀
Haha thanks.
It’s not magic. Simply a combination of good project management skills and lots of caffeine.
Glad it worked for you.
- You must be logged in to reply to this topic.