Home › Forums › ACF PRO › How to Stop ACF Stripping Duplicates in Choices Field? › Reply To: How to Stop ACF Stripping Duplicates in Choices Field?
No, there isn’t a way to stop this. The way that ACF works does not have the ability to have options groups and it does not allow multiple duplicate values. Why? ACF stores the choices your enter in an array that looks something like this:
$field = array(
// other field settings
'choices' => array(
'value 1' => 'label 1',
'value 2' => 'label 2',
// etc...
),
// other field settings
)
The problem here is that PHP does not allow duplicate array index values, which is where your choice value lives.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.