I would like to delete the membership part of the ecommerce module - i would like to delete the account login, the password form in the checkout page and anything that refers to the membership part.
please help...
any suggestions would be much appreciated
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
E-Commerce Modules /
Discuss about the various e-commerce modules available:
Ecommerce, SS Shop, SilverCart and SwipeStripe
Alternatively, have a look the shared mailinglist.
Moderators: martimiz, Nicolaas, Sean, Ed, frankmullenger, biapar, Willr, Ingo, Jedateach, swaiba
deleting membership part of ecommerce module
Hi mate,
This form is built using Silverstripe's form class. You will find the code in /ecommerce/code/OrderForm.php. You will need to remove the form building code relating to those fields from there.
Then in /ecommerce/code/CheckoutPage.php, function processOrder() does all the processing including logging the user in.
This is going to require a bit of playing around on your part in these two files, as the Orders have a has_one relationship with Members. So you won't be able to just take the fields away and have your checkout work.
You might be better off explaining what exactly you are trying to do (sounds like a membership free checkout). You might find that someone has already done this and will share the code.
Aaron