Hi!

I want to set up a really simple product management system on my page. The eCommerce Module is way too compley for my needs. I'd like to manage this with either with a new CCK node type or some other module.

A product page should have title, description, and - with CCK thats the hard part - some list select fields where the user can select some properties that the node creator can specify (different ones for different products...). And below all this there should be a button to send an email with username and selected options to the admin-email-adress.

Any suggestions on how to implement this? Sadly, I'm not very good at php...

Thanks in advance for the help!

Comments

zeitenflug’s picture

A really simple solution would involve webform.module. You could create a webform for every product category that has the select fields you need. On submit, you get an email and the result is saved in the database. In case you lose an e-mail, you still have the order details. But, I repeat, this is a really simple solution. You see the product, you click on it, you order it. No cart, no checkout, nothing. But if that's what you are looking for, give it a try.

oneoftwo’s picture

Thanks very much, that fits my needs quite well!