STK wrote: Wed Feb 14, 2024 2:27 pm
Cleared all data, tried again with the given form changed to checkboxes with 1,2,3 as options. Here's what the database says: see attachment.
Is that as it should be?
It's odd, but somehow your entries are being saved as one big entry. That shouldn't be happening. The relevant piece of code that figures this out is:
serialize(explode(PHP_EOL, $entry_type_match))
(where
$entry_type_match
is the value of the field where you set the radio/checkbox values, being 1,2,3 in this case)
and that should be splitting your string properly. Oddly enough it's not detecting your newlines. Maybe there's something odd going on where PHP_EOL doesn't match what you're typing in.
I've just PRd a potential fix to the
main branch of the github, please test that out for me. It also has a few other minor fixes as well (template image ordering was broken, there were references to smilies, among other things). I'm currently working through some issues I've been made aware of.