I would consider using a different approach as to that blog post, I set up Paypal ipn with it last year and have recently rebuilt the entire thing as it's not really well thought out. You'll end up with 100000s of random empty Orders. My advice to you is use the Paypal form from it and monkey patch cartridge.shop.views.checkout_steps to your needs. checkout_steps is the where the meat is, get in there and get to know it really well and everything else falls into place.
But to answer your question, you should be able to just hide the form in templates/shop/payment.html OR even better sublass cartridge.shop.forms.OrderForm and hide the card details on every step. PS I just launched Stripe. Absolutely incredible, I fully incorporated it into cartridge but if you need a quick solution to taking card payments you can pretty much just drop it into payment.html Joe On Sat, Dec 10, 2016 at 10:58 PM, Thomas <[email protected]> wrote: > Hello, > > I am trying to set up a Cartridge shop that will use Paypal WPS/IPN for > payment. I have followed the instructions here http://greenash.net.au/ > thoughts/2014/03/using-paypal-wps-with-cartridge-mezzanine-django/ which > I understand were based on something originally posted to this group. > > The issue I am having is that step 2 of the checkout continues to show the > standard Cartridge payment entry form, when of course I am wanting just a > Pay with PayPal button. I noticed that SHOP_CHECKOUT_FORM_CLASS is > deprecated, and set a URL pattern that passes 'CallbackUUIDOrderForm' into > the 'checkout_steps' view instead. > > I also have PRIMARY_PAYMENT_PROCESSOR_IN_USE = False and all the rest of > the instructions, and still see the standard step 2 instead of the Paypal > one. > > Any advice/help would be appreciated here, as I'm pretty stuck. Ideally, > if anyone has had this problem before and found a way out, I'd love to hear > about that obviously, but of course any suggestions would be most welcome. > > Thnkas, > Thomas > > > -- > You received this message because you are subscribed to the Google Groups > "Mezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
