Sorry to be asking so many questions - I will get this all figured out soon.
I inserted a "how did you find out about us" survey on my checkout page.
I put the HTML code in my custom template. I'm using field01 - Commerce Setup|Order System|Checkout. I've check the Emails box.
It shows and works great for the user on the checkout page. However, the field does not display on the order notification receipt or when you view the order through "Orders". I'm not sure what I missed. I've read the Help several times over - "The order confirmation e-mail messages that you receive will contain all the custom form fields for which you checked the "Emails" box. The name and content of all custom fields are automatically included when you view orders in the ShopSite back office. "
I even copied the survey example, and only tweaked the options listed in the box. Does something else need to be set somewhere? I republished the store in case that had something to do with it, but still nothing. I searched past posts here and didn't see anyone with this problem before, so it's got to be something easy I'm missing?
Here's my HTML code - there's not much to it. It's in my custom shopping cart template, inside the <form> for the whole page, after the email list, before the security image. Like I said, it looks fine on the page:
<b>How did you hear about us?</b><br>
<select name="field01" size="1">
<option value="Select One" selected>Select One</option>
<option value="Repeat Buyer">Repeat Buyer</option>
<option value="Friend or Family">Friend or Family</option>
<option value="Search Engine">Search Engine</option>
<option value="Billboard">Billboard</option>
<option value="Website Link">Website Link</option>
<option value="Mailer">Mailer</option>
<option value="Radio Ad">Radio Ad</option>
<option value="Retail Store">Retail Store</option>
<option value="Other">Other</option>
</select>
Thanks for your help.