I’m trying to develop a copy of the check/money order payment method for bank transfers. I got it all working on my local machine but when I transferred all the files to the server I get an error in the checkout page on the frontend:
Fatal error: Call to a member function setMethod() on a non-object in /home/user/public_html/bp/app/code/core/Mage/Payment/Helper/Data.php on line 125
Credit Card (Cybersource) , Guys help, Im having trouble with Username Token authentication after I place order
Where can i find a documetation or at least a read me file to solve this… currently magnto doesnt even release a read me file for their module update....
i have already developed my first payment model for checkout. this is the special payment model for German market called Lastschrift (debit advice).
Hi [m]zentrale, I also need a Lastschrift module for my german shop. Is there a chance that your payment module will be available as an extension or as a zip? I tried to follow the thread but I´m having a hard time to get it. Any help would be appreciated.
payment modules are specified to a payment provider. my actual running module is specialiced for payone. Module for heidelpay is obsolete. in near future there will be a total integration of payone payments available. a german agency is working on it. so be patient.
Here’s an example module for offering bank transfer as an option. It works for me on my local machine but I can’t get it to work remotely. Maybe it’s just my remote setup that’s wrong so hopefully this will be of use to someone.
@Mark Robinson: I did not try it, but a small note:
if your module contains custom blocks, declare them in etc/config.xml same way you do models:
<config> <global> ... <!-- declare model group for new module --> <blocks> <!-- block group alias to be used in type="banktransfer/..." --> <banktransfer> <!-- base class name for the block group --> <class>Mage_BankTransfer_Block</class> </banktransfer> </blocks>
I’m trying to create a dependency on a new payment method I just created (called, “Cash On Delivery"), so that it only displays when a certain shipping method (called, “Pick Up") has been selected.
I’m still not familiar enough with the Zend framework to dig into this much customization unfortunately.
Anyone know how to go about this and what files will need to be edited?