In expression engine:

I have a site that businesses can sign up and then sell 1 type of widget. Each business just needs name, widget and price. Then there will be a page that shows all business, with their widget and price.

What is the best way to handle the extra parameters 'widget' and 'price'?

From what I can work out there are two options

1/ Sign up the business as a user in a group with no admin privilages. Add the two custom member fields 'widget' and 'price' for the users. (It may not be called 'member' field, I'm going off my memory). To show these business I then grab the users.

or

2/ Sign up the business as a user in a group with no admin privilages. Add a one custom member field called 'id'. Then create a 'business' channel and to that channel add the custom fields 'name', 'widget', 'price', 'user_id'. Then link the instance of the business channel to the user with the 'id' property. When I want to show these business I grab the details from the channel.

Sorry if this is already answered somewhere. I'm not getting much luck from google, most likely because i'm having trouble phrasing my question succinctly enough.

Thanks

Dave

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Dave,

If you're dead set on using users to organize these businesses, then your best bet would be the two custom fields. They're easier to use in templates and you don't have to worry about pulling in the channel data for the item in the custom member field 'id'. That being said, you should check out Solspace's User Module—it'll give you more flexibility with the member information.

Another thought, and depending on whether or not these businesses should be able to edit their widget and price, is you could just make it a channel and skip using users altogether. Using Freeform, you could create a form where businesses add that information, you get an email, and you add the information to the channel you want.

Wes

link|improve this answer
Thanks Wes, Yes I was thinking about my problem incorrectly (new to how EE handles data). What i'm doing now is having a business as a member and a channel called widget and i'm making a stand alone form for creating and updating the widget and price. Because its a stand alone form I can control how many widgets they can create (i don't give them access to the control panel). In terms of linking to the channel, that isn't a problem because an entry in a channel has to published by a member, so its already linked. – Lango Feb 15 '11 at 4:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.