Hi @ashop1,
Your account was created successfully. Your access data has been sent to your email address.
You can change the text temporarily in the class-wc-form-handler.php file, but am afraid that the nearest WooCommerce update will override that.
The solution might be an additional code snippet added via Code Snippets plugin, as suggested here: https://pluginrepublic.com/documentation/remove-woocommerce-notice-when-user-registers-new-account/
<?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 );
Hope that helps.