Hi
Installed Eway payment gateway, API keys correct all is working as it charged my account.. However the following msg remains on payment screen.
"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."
Maybe I could just remove the msg from the code? Any ideas where to look cannot seem to find?
Thanks
Installed Eway payment gateway, API keys correct all is working as it charged my account.. However the following msg remains on payment screen.
"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."
Maybe I could just remove the msg from the code? Any ideas where to look cannot seem to find?
Thanks
In Extensions
Share this post:
Responses (6)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
Hm... forget about testing that. To early in the morning, it probably can't work in template just like that.
It should be fixed in the controller (too):
https://github.com/arastta/addons/blob/master/payments/eway/upload/catalog/controller/payment/eway.php#l45-l51
The problem is that all strings including this is already being loaded at line 15:
https://github.com/arastta/addons/blob/master/payments/eway/upload/catalog/controller/payment/eway.php#l15
Anyhow you can just delete those lines for now, to remove that text:
https://github.com/arastta/addons/blob/master/payments/eway/upload/catalog/view/theme/default/template/payment/eway_iframe.tpl#l5-l7
Edit! Added the issue to GitHub: https://github.com/arastta/addons/issues/29 -
Accepted Answer
Have you tried clearing all caches after turning of the test mode?
Btw! Having all those tabs open at once, same time as browsing admin and other important sites scares the shit out of me ...
Edit! It's a bug in this line https://github.com/arastta/addons/blob/master/payments/eway/upload/catalog/view/theme/default/template/payment/eway_iframe.tpl#l5
Try changing it into:
<?php if ($this->config->get('eway_test') && isset($text_testing)) { ?>
-
Accepted Answer
-
Accepted Answer
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »