Magento1 : How to Set NO Payment Method Required - magento

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/

Related

magento skip payment method from checkout

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.

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.

Can I move Paypal button to checkout page in magento?

Is there any way to move Paypal button to checkout page, anyone can help with this?
Each payment method has a field named Sort Order. Starting at one, place a number in each enabled payment method, save and they should appear in the cart payment section in the order you entered.
System => Configuration => Sales => Payment Methods
for more help, check here
Paypal express checkout button is on cart page.
Paypal standard module if used will show Paypal button on checkout page.
So suggestion is that you enable paypal standard.

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

magento - Creating a custom module and enabling payment for nominal items

I have created a custom payment module and a custom gateway successfully using the following tutorials:
http://www.magentocommerce.com/wiki/5_-_modules_and_development/payment/create-payment-method-module
http://colourgray.wordpress.com/2009/11/11/magento-create-a-custom-payment-method/
However, my problem now is that my module would not show up when I checkout an item with recurring profiles.. how do I enable my payment module for nominal items such as these? also what are the requirements if any?
Currently only Paypal Express can be seen (if enabled), what are the conditions on why the Paypal Express payment module can be seen on checkouts with nominal items?
Your payment method class must implement Mage_Payment_Model_Recurring_Profile_MethodInterface interface. Look at class Mage_Paypal_Model_Express. When you implement it - it becomes available in shopping cart when you checkout cart with nominal items only (as Paypal Express works now, see link from Oğuz Çelikdemir).

Resources