Zen Cart Logo
Forums / Setting Up Categories, Products, Attributes / Custom requests and options

Custom requests and options

Locked

Views: 930

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
11 May 2010, 1:56 PM
#1
cuddlingwolf avatar

cuddlingwolf

New Zenner

Join Date:
May 2010
Posts:
13
Plugin Contributions:
0

Custom requests and options

Is it possible for me to put a form input such as a text field where a customer can type in their own custom requests for a product. That is to say, if I have a sticker im trying to sell with a picture on it, and I want them to be able to tell me what they want it to say beneath it, can there be a field for them to type that in when they order the product?

11 May 2010, 8:22 PM
#2
cuddlingwolf avatar

cuddlingwolf

New Zenner

Join Date:
May 2010
Posts:
13
Plugin Contributions:
0

Re: Custom requests and options

I figured out how to do it! Nevermind :)

11 May 2010, 8:37 PM
#3
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Custom requests and options

What was the solution that worked for you? :smile:

8 Jun 2010, 1:53 PM
#4
vooboo13 avatar

vooboo13

New Zenner

Join Date:
Dec 2009
Posts:
55
Plugin Contributions:
0

Re: Custom requests and options

This is something I'm looking for. How were you able to do it?

17 Jun 2010, 6:08 AM
#5
deviouscow avatar

deviouscow

New Zenner

Join Date:
May 2010
Posts:
29
Plugin Contributions:
0

Re: Custom requests and options

Go to catalog -> option names
Add a new Option name of type "Text"
Add that new field to your product.

17 Jun 2010, 2:58 PM
#6
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Custom requests and options

Be sure to check via phpMyAdmin that the table:
products_options_values

has a record for the
products_options_values_id 0
language_id 1
products_options_values_name TEXT
products_options_values_sort_order 0

If that is missing, you can add it with:

INSERT INTO products_options_values (products_options_values_id, language_id, products_options_values_name) VALUES (0, 1, 'TEXT');