magento skip payment method from checkout - magento

I have magento EE 1.14.2 setup my client don't want any payment method now.
How can I skip payment method from checkout process. I just want to place order without selection payment method.
Any suggestion welcome in advanced.

You can follow below link to hide payment method.
http://excellencemagentoblog.com/blog/2011/10/17/magento-onestep-checkout-remove-payment-method-step/
Please let me know if you need any help from my side.

Related

Magento1 : How to Set NO Payment Method Required

I am using magento 1.9.I want to display at checkout that "No Payment method required".How to proceed checkout without Payment Method. Or i have to create custom payment method? Thanks
By default this functionality not available in Magento. But you can follow the below steps to remove the payment step and customize this as per your need.
http://excellencemagentoblog.com/blog/2011/10/17/magento-onestep-checkout-remove-payment-method-step/

Place order from suiteCRM and redirect into magento for payment

I want to create one functionality in suiteCRR which is below.
Order place from the suiteCRM
When i click on place order button on suiteCRM then it will redirect into magento website with that order informations.
payment will be processed through magento only.
Any SuiteCRM guys help me would be very helpful.
Thanks in advance.
You will need to create and "after_save" logic hook to redirect to where ever you need it to go once the record is saved in SuiteCRM.

Different checkout pages based on product category in Magento

I am new to Magento .So please forgive me if I am asking something silly.
I am working on a Magento shop where I have a requirement that when I select some product in certain category say X, then I am redirected to one page checkout where I have default shipping method and do not want any payment method. i.e. Skip shipping and payment method step in chekout.
Whereas if I click some other categories then I get redirected to onepage checkout with shipping and payment option.
So basically what I need in form of code is -
if(category==X)
then Checkout without Shipping and payment method
else
Checkout with Shipping and Payment options.
As far as I have explored the magento structure , it is far too complex then other CMS. I am not able to even find files where i have to make changes in code. Anybody out there who can guide me for right approach toward the solution? Or is there any extension which fulfills such requirement?
Thanks in advance.
First, create the new payment method for the category (and shipping method if you need that too).
http://www.magentocommerce.com/wiki/5_-_modules_and_development/payment/create-payment-method-module
http://www.magentocommerce.com/wiki/5_-_modules_and_development/shipping/create-shipping-method-module
Then I would probably extend the controller, though you probably could also use an observer.
Extend magento core controller (Checkout/OnepageController)
Keep in mind that the customer may have products from another category in their cart, and what to do in that case.

How to remove review order in onepage checkout option?

I want to remove review order option.
I want to "Place Order" event in payment information option. Means, If payment method selected then payment cycle should complete instead of Review Order comes.
I have tried and reasearch regarding this. But I am not getting solution.
Thank you
You need to rewrite Mage_Checkout_Block_Onepage::_getStepCodes().
You need an observer that saves other after payment is selected. If you have 'terms and conditions' they have to be checked automatically.
You can checkout more on this post: https://magento.stackexchange.com/questions/8100/how-can-i-remove-the-review-step-in-onepage-checkout

what is the observer name of savepayment in magento

i want the name of savepayment observer can any body please answer me i have searched on the
google but not lucky yet.. please reply.
the savepayment means the button we click before the place order i mean to say when
we choose the payment method in onepage checkout.
Thanks,
Jitendra.
Afaik, there simply is no such observer event* in Magento. That's why you cannot find it.
But you can override
Mage_Checkout_OnepageController::savePaymentAction()
to get in control of saving payment methods.
*At least not in Magento CE 1.3 - 1.5. Don't know if this is also true for Magento PE/EE
perhaps controller_action_postdispatch_checkout_onepage_savePayment might help you ?

Resources