[ad_1]
[ad_2]
Hello friends, I've been trying to change this damn message for weeks, I use WooCommerce and Astra theme and I literally just want to edit this text. Does anyone know the path of the code file that I can edit this text? Thank you very much.

You can try this code (I have not tested it):
function change_account_text($translated_text, $text, $domain) {
if ($translated_text == ‘Already have an account’) {
$translated_text = ‘Your New Text Here’;
}
return $translated_text;
}
add_filter(‘gettext’, ‘change_account_text’, 20, 3);
Non destructively you can use a language translation plugin to locate that text and make a language file for it, but you could also modify the PHP in the child theme, or you can go lazy and replace it on the fly with custom JS. All options will work tho