Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

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


Go to End


2 Posts   1707 Views

Avatar
Nickt

Community Member, 43 Posts

14 November 2009 at 8:08pm

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

Avatar
Double-A-Ron

Community Member, 607 Posts

14 November 2009 at 10:20pm

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