Re: [mezzanine-users] Cartridge - SHOP_CHECKOUT_FORM_CLASS setting is deprecated

2015-08-28 Thread James Lewis
I have tried this and it is still not working, I have tried all the different urls on this group and I am still getting the same errors. What else do you have to change to stop this error appearing; is there not any changes I need to make in forms.py, settings or anything else? Thanks :-) On

Re: [mezzanine-users] Cartridge - SHOP_CHECKOUT_FORM_CLASS setting is deprecated

2014-07-12 Thread Tristan Barry
Thanks for the feedback on this. Just to follow up (in case anyone else want to know the solution), this worked well: from myapp.forms import CustomForm url(^shop/checkout/$, cartridge.shop.views.checkout_steps, name = checkout_steps, kwargs=dict(form_class=CustomForm)), I placed this line in

Re: [mezzanine-users] Cartridge - SHOP_CHECKOUT_FORM_CLASS setting is deprecated

2014-07-11 Thread Josh Cartmell
Hey Tristan, I think you would still use the cartridge checkout view but override the kwargs to specify your own form class, something like (this is off the top of my head so may not be exactly right): url(^shop/checkout/$, cartridge.shop.views.checkout_steps, name = checkout_steps,

Re: [mezzanine-users] Cartridge - SHOP_CHECKOUT_FORM_CLASS setting is deprecated

2014-07-11 Thread Stephen McDonald
That sounds right. On Sat, Jul 12, 2014 at 4:07 AM, Josh Cartmell joshcar...@gmail.com wrote: Hey Tristan, I think you would still use the cartridge checkout view but override the kwargs to specify your own form class, something like (this is off the top of my head so may not be exactly