change text wc_add_notice
-
hi, i need to change the text from:
wc_add_notice (__ (‘Your account was created successfully and a password has been sent to your email address.’, ‘woocommerce’));
at line 1099 of class-wc-form-handler.php
They gave me a code but it doesn’t work, I show you:
<? php
/ **
* Change WooCommerce notice when user registers new account
* /
function wcmo_remove_new_registration_notice ($ notice_message) {
if (strpos ($ notice_message, ‘Your account was created successfully’)! == false) {
return ‘YOUR NEW MESSAGE SHALL BE HERE’;
}
return $ notice_message;
}
add_filter (‘woocommerce_add_success’, ‘wcmo_remove_new_registration_notice’, 99, 1);I have modified filters but this one is not, how could I do it?
I hope he can help me
- The topic ‘change text wc_add_notice’ is closed to new replies.