Hi guys, I created another snippet to have another dropdown on the form, and then I got this error. Is it now allowed to have more than 1 snippet inside of 1 form?
It was supposed to look like this.
Hi guys, I created another snippet to have another dropdown on the form, and then I got this error. Is it now allowed to have more than 1 snippet inside of 1 form?
It was supposed to look like this.
If this is not possible, how to add a radio button or checklist in the field?
The error indicates the site already has a function named set_column
. Since there can’t be multiple functions with the same name you need to change the function name from set_column
to something unique e.g. set_column_2_16_5
. You need to make that change on both the add_filter
and function
lines.
Thank you, Richard