0

i am a newbie in open cart and is currently working on open cart. I installed the payment module in adminsitrator. When checking out from the front end, the payment method is not opening up and working.I thought that there might be a problem with the extension, so i uninstalled it still the payment method is not working. Any help? I am using Citrus payment method(Indian gateway)

VIVEK-MDU
  • 2,483
  • 3
  • 36
  • 63
A Nerd
  • 27
  • 1
  • 5
  • When debugging it with the firebug, it is showing me the following error:- $('.colorbox').colorbox({ – A Nerd Jul 13 '13 at 11:12
  • Please explain it briefly...I can`t understand what do u want it..payment module will show in admin panel go to methods: Extension-> payments-> what your payment show, u just enable it and its will show in frontend – VIVEK-MDU Jul 15 '13 at 10:54
  • 1
    I installed a payment extension in admin panel, enabled it and on front end on checkout process. The payment method option is not displaying anything.Before all the process are working fine but when it goes to payment method it is not showing any payment method to choose. In my admin panel, i enabled citrus payment and cash on deliever method – A Nerd Jul 17 '13 at 10:26
  • what is version of your opencart ? and also version of your payment extension.Please verify your extension which is applicable for your opencart version. – VIVEK-MDU Jul 17 '13 at 13:54
  • I am using open cart version 1.5.5 and taken that citrus payment gateway extension from the official citrus company. When installing on my administrator panel. It is showing that error in loading the language file. so i changed the code of loading the language file after that it is working fine except in front end :( – A Nerd Jul 18 '13 at 05:41
  • thank you for communicate with me... – VIVEK-MDU Jul 18 '13 at 05:53
  • 1
    My problem has been solved now. Thanks for giving me your time. I really appreciate about it :) – A Nerd Jul 18 '13 at 06:38

1 Answers1

1

Okays, i finally found the solution. The main problem that it is unable to call the colorbox function on my payment_method.tpl file. So what i have done is to comment the $('.colorbox') whole javascript function. After that it worked completely fine. So guys, if you are having any kinds of problem in any checkout process mainly due to that javascript function then just comment it and it will work fine:-

catalog/view/theme/default/template/checkout/

<script type="text/javascript"><!--
$('.colorbox').colorbox({
    width: 640,
    height: 480
});
//--></script> 

just comment that script and it will work fine.Thanks and have a nice day ahead :)

A Nerd
  • 27
  • 1
  • 5