On failed log in it gives the error
THE ACCOUNT SIGN-IN WAS INCORRECT OR YOUR ACCOUNT IS DISABLED TEMPORARILY. PLEASE WAIT AND TRY AGAIN LATER
Which I think is too strong as the user more than likely just put in the wrong log in details, so I would like to change this text to something a little softer
I have tried inline edits and that line is not able to be changed. How and where do I change this text?
Thanks.
Solved! Go to Solution.
Hi @bigbob2
If you want to change text for login error only then follow below steps:
Override LoginPost.php with your custom module first.
/vendor/magento/module-customer/Controller/Account/LoginPost.php
And update error message according to your requirement.
If issue resolve, please click on 'Kudos' & Accept as Solution.
STEP : 1 app/design/frontend/{Vendorname}/{themename}/i18n/en_US.csv
STEP : 3 Edit ev_US.csv
STEP : 2 "You did not sign in correctly or your account is temporarily disabled.","custom message."
For default you can find text here:
vender/magento/module-cusotmer/i18n/en_US.csv
Hi @bigbob2
If you want to change text for login error only then follow below steps:
Override LoginPost.php with your custom module first.
/vendor/magento/module-customer/Controller/Account/LoginPost.php
And update error message according to your requirement.
If issue resolve, please click on 'Kudos' & Accept as Solution.