Zen Cart Logo
Forums / Addon Payment Modules / Why do some payment options work & others don't?

Why do some payment options work & others don't?

Locked

Views: 979

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
24 Aug 2009, 2:53 AM
#1
wakag avatar

wakag

New Zenner

Join Date:
Aug 2009
Posts:
8
Plugin Contributions:
0

Why do some payment options work & others don't?

I'm using Zen Cart 1.3.8a. nearly ready to add my cart the my site. I have setup all my payment options in Admin - Credit card, paypal show up in the checkout but others I have uploaded from add ons - Simple Bank Deposit Module, ONLINETBANK, payoffline, are all setup in admin but not showing up in checkout. Even the Check and money order doesn't show up.
I have read other post and and tryed different things but still nothing.
Probly something simple but I can find it.
Any help would be much appreciated:lookaroun

24 Aug 2009, 10:09 AM
#2
wakag avatar

wakag

New Zenner

Join Date:
Aug 2009
Posts:
8
Plugin Contributions:
0

Re: Why do some payment options work & others don't?

Ok I worked out the Simple Bank Deposit Module....
INCLUDES/MODULES/PAYMENT/dirbank,php
on line #69 change = false; to = true;

eg.
from this

// disable the module if the order only contains virtual products
if ($this->enabled == true) {
if ($order->content_type == 'virtual') {
$this->enabled = false;

to this

// disable the module if the order only contains virtual products
if ($this->enabled == true) {
if ($order->content_type == 'virtual') {
$this->enabled = true;

good luck zenners:clap:

26 Aug 2009, 2:03 AM
#3
wakag avatar

wakag

New Zenner

Join Date:
Aug 2009
Posts:
8
Plugin Contributions:
0

Re: Why do some payment options work & others don't?

OOW and if you are in Australia, you need to set the 'Payment Zone' as
--none-- . Coz setting it to Australia will also make it disapear.

One more thing... the BSB didn't show up so under the 'Bank Account No' I just put both BSB & Acc like this:
BSB: xxxxxx Acc:xxxxxxxx

Cheers:wink: