http://ankorecords.com/shop/index.ph...&products_id=3
How can I take off those radio buttons and make it a dropdown instead?
Thanks!
Cameron
http://ankorecords.com/shop/index.ph...&products_id=3
How can I take off those radio buttons and make it a dropdown instead?
Thanks!
Cameron
look in the option name manager in the catalog section of your admin
just change the attribute type from radio to dropdown
that's what's weird.. I have it set to dropdown?
Cameron
You have misconfigured your Option Names and Option Values ...
Make an Option Name called: Size
Option Type: Dropdown
Make Option Values for the Option Name Size:
YL
SM
MED
LG
XL
Now all the sizes are part of 1 Option Name and the customer can make a real choice of what they need
NOTE: Option Names that are dropdowns with 1 Option Value switch automatically to Radiobuttons as there isn't a choice to really make ...
NOTE: Adding a 2nd Option Value will revert the Option Name dropdown that looks like a Radiobutton back to a dropdown as now there is a choice ...
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Worked. Grazie!!!!
Thanks for the update ... good luck with your site!![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Hi All!
Please Urgent!
I set price by attribute in zencart, with Radio button, where user can select any canvas size for price one of Radio button with file upload and comments from the user. This is my side link.
http://team-kh.awpdc.com/~shzaikhn/s...roducts_id=913
Now my problem is that, I want to know about the name of these entire Radio button, file name and comments that I will send mail about all these data which user selected.
A good Replay will really appreciate!
Hi All!
Please Urgent!
I set price by attribute in zencart, with Radio button, where user can select any canvas size for price one of Radio button with file upload and comments from the user. This is my side link.
http://team-kh.awpdc.com/~shzaikhn/s...roducts_id=913
Now my problem is that, I want to know about the name of these entire Radio button, file name and comments that I will send mail about all these data which user selected.
Like for comments was sent as message in the mail.
$messsage=$_post[‘Comments’];
Echo $message;
A good Replay will really appreciate!
Hi All!
Please Urgent!
I set price by attribute in zencart, with Radio button, where user can select any canvas size for price one of Radio button with file upload and comments from the user. This is my side link.
http://team-kh.awpdc.com/~shzaikhn/s...roducts_id=913
Now my problem is that, I want to know about the name of these entire Radio button, file name and comments that I will send mail about all these data which user selected.
Like for comments where I used textarea was sent as message in the mail.
$messsage=$_post[‘Comments’];
//Echo $message;
mail($to, $subject, $message, $headers);
A good Replay will really appreciate!
![]()
I check code for the above in Firefox by doing Crt+u it source code, which for text area is :- <textarea class="attribsTextarea" name="id[txt_7]" rows="6" cols="40" onkeydown="characterCount(this.form['id[txt_7]'],this.form.remainingtxt_7,500);" onkeyup="characterCount(this.form['id[txt_7]'],this.form.remainingtxt_7,500);" id="attrib-7-0" ></textarea>
So it name is id[txt_7]
And for Radio button name is name="id[3]".
For file upload name are, <input type="file" name="id[txt_4]" id="attrib-4-0" />
But all these are not working fine. Means not passing value ,
Please if any one know about the exact name of all these name.
Thanks