AWESOME plugin!! It's working great for me except for some trouble with a select field. I created this field:
Name: Flavor
System key: flavor
Field type: Select field
Label: Show label
Values: Chocolate
Vanilla
PHP Code: (left blank)
When I bring up the Edit page, I can see that there's a dropdown menu, but there is no text displayed for the options. Here's the HTML for the <select> tag:
<select name="flavor">
<option value="Chocolate"></option>
<option value="Vanilla"></option>
</select>
Am I doing something wrong?