Payment method is not showing up in opencart

4.9k Views Asked by At

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)

1

There are 1 best solutions below

0
On BEST ANSWER

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 :)