Page 1 of 1
change "Returning Customer" in checkout options to "Existing Customer"
Posted: Wed Aug 09, 2017 8:19 pm
by sag33
I searched for this, but didn't find anything specific.
Opencart version 2.3.0.2
Thanks in advance!
Re: change "Returning Customer" in checkout options to "Existing Customer"
Posted: Wed Aug 09, 2017 10:15 pm
by DigitCart
Hi,
Check these two files:
Code: Select all
catalog\language\en-gb\account\login.php
catalog\language\en-gb\checkout\checkout.php
Re: change "Returning Customer" in checkout options to "Existing Customer"
Posted: Wed Aug 09, 2017 11:14 pm
by sag33
Hi,
Thank you for your reply.
Just confirming the changes with you:
In /catalog/language/en-gb/account/login.php
$_['text_returning_customer'] = 'Returning Customer'; ---> $_['text_returning_customer'] = 'Existing Customer';
and In /catalog/language/en-gb/checkout/checkout.php
$_['text_returning_customer'] = 'Returning Customer'; ---> $_['text_returning_customer'] = 'Existing Customer';
Thank you,
Re: change "Returning Customer" in checkout options to "Existing Customer"
Posted: Wed Aug 09, 2017 11:56 pm
by DigitCart
You're welcome.
Take a look at this article:
How to use the “Find in files” feature in Notepad++
https://www.templatemonster.com/help/ho ... tepad.html
Re: change "Returning Customer" in checkout options to "Existing Customer"
Posted: Thu Aug 10, 2017 6:17 pm
by paulfeakins
DigitCart wrote: ↑Wed Aug 09, 2017 11:56 pm
Take a look at this article:
How to use the “Find in files” feature in Notepad++
Also consult the man page for grep.
Re: change "Returning Customer" in checkout options to "Existing Customer"
Posted: Thu Aug 10, 2017 7:37 pm
by DigitCart
paulfeakins wrote: ↑Thu Aug 10, 2017 6:17 pm
DigitCart wrote: ↑Wed Aug 09, 2017 11:56 pm
Take a look at this article:
How to use the “Find in files” feature in Notepad++
Also consult the man page for grep.
Sorry I did not understand what you meant.