Page 1 of 1

Product Manager: Custom Required Fields?

Posted: Wed Oct 06, 2010 10:12 pm
by kms
Is there a way to add custom required fields to a product? Say for instance you are selling custom embroidered hats, there needs to be a required field where the user enters their name before they can add the product to the cart, or at least on checkout or something...

THANKS!

Re: Product Manager: Custom Required Fields?

Posted: Thu Oct 07, 2010 11:15 am
by markovica
if you are rerfernig to calguy ecommerce suite (Product/Cart/Order), the login requirement is handled by order module (you can find it somewhere in the settings).
Products can have custom fields as well as attributes (ex size small, -100$ on the price)...

Re: Product Manager: Custom Required Fields?

Posted: Thu Oct 07, 2010 11:22 am
by markovica
sorry, i just saw you previous post about not using cart/order...

you can check if user is loged in with cusom content module...

Code: Select all

{if $ccuser->loggedin()}
  DO the stuff for login users, checkout or whatever...
{else}
  show login or something
{/if}

Re: Product Manager: Custom Required Fields?

Posted: Tue Oct 12, 2010 10:44 pm
by kms
Hi markovica,

Thanks for responding! Yes, I am using Calguy's ecommerce suite. I've got everything working, including the login, very nice. But what I need is present the shopper/user with some required fields and choices on a product. The simplest example I could think of is selecting "small, medium, or large" on a t-shirt. A more complex example would be a required text filed, where a user can enter a name to be embroidered on a shirt. Anyone know if this is possible, or where /how I would do this?

Thanks!

Re: Product Manager: Custom Required Fields?

Posted: Wed Oct 13, 2010 8:05 pm
by kms
Anybody done this? Any ideas?