itst
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
You need to input the list in a [key]|[value] format like this:
1|Monday
2|Tuesday
3|Wednesday
4|Thursday
5|Friday
6|Saturday
7|SundayThis would render as
<option value="1">Monday</option> <option value="2">Tuesday</option> ... and so on.Hope this helps.
BTW, the logic can be found in easy-post-types/classes/custom-select/custom-select.php in the function prepareArray().
If you want to use PHP the generate the list, your code needs to return an array like this:
return array( array(1, 'Monday'), array(2, 'Tuesday'), ... and so on. );Hey Josh,
thank you! I mailed you my details the other day.
Do you already know when the new version will be released?
Regards
SaschaForum: Themes and Templates
In reply to: German language files for SquibleFixed one speling error and HTML-umlauts.
Viewing 3 replies - 1 through 3 (of 3 total)