Page 1 of 1

Eway module issue

Posted: Thu Jun 06, 2019 3:08 pm
by yaksich
Hello,
I have installed and enabled Eway module and although it is not set to testing mode, it still gives me this message at the checkout:
"This payment gateway is currently being tested. Your credit card will not be charged. If this is a real order, please use an alternate method of payment at this time."
Not sure what I am doing wrong. Couldn't find in my Eway web page any settings that would affect the module in this way. However, not sure if I need to set up every single payment gateway individually under "Settings" (on Eway website) for the module to stop displaying this message.
Any clues?
Thanks
Nick

Re: Eway module issue

Posted: Sun Jun 09, 2019 9:32 am
by MarketInSG
which version of opencart are you using? If on OpenCart 3, try clicking the clear theme cache in your admin dashboard. There's a button at the top right.

Re: Eway module issue

Posted: Sun Jun 09, 2019 3:30 pm
by thekrotek
It doesn't tell you about testing mode, it tells you, that module itself is being tested and not recommended to use right now.

Re: Eway module issue

Posted: Sun Jun 09, 2019 4:14 pm
by letxobnav
which is triggered by putting the gateway in test mode.

Re: Eway module issue

Posted: Sun Jun 09, 2019 4:34 pm
by thekrotek
letxobnav wrote:
Sun Jun 09, 2019 4:14 pm
which is triggered by putting the gateway in test mode.
Doesn't really matter, still a bug, if it keeps saying about testing mode, regardless of what is tested.

Re: Eway module issue

Posted: Sun Jun 09, 2019 8:24 pm
by letxobnav
then change:

if ($this->config->get('payment_eway_test')) {
$data['text_testing'] = $this->language->get('text_testing');
$data['Endpoint'] = 'Sandbox';
} else {
$data['Endpoint'] = 'Production';
}

into

if ($this->config->get('payment_eway_test')) {
$data['text_testing'] = $this->language->get('text_testing');
$data['Endpoint'] = 'Sandbox';
} else {
$data['text_testing'] = false;
$data['Endpoint'] = 'Production';
}

Re: Eway module issue

Posted: Mon Jan 10, 2022 2:47 pm
by initmedia
Hi all
I'm having the same issue as the original poster. I have contacted eway and tested the payment successfully, so I know that the text saying that the payment gateway is still in test mode is just a cosmetic issue. I have reset the cache like one of the replies suggested to no luck, but I can't find where I should be substituting text like the other reply suggested. Any advice would be appreciated.