Support

Account

Home Forums Add-ons Options Page Problem populating select field choices Reply To: Problem populating select field choices

  • The code looks okay, I have some questions about splitting on “n”, but we can’t check that until there is something to split. It appears that $choices = get_field('test2', 'option', false); is not getting anything, so you need start there.

    Check that field name and that there is a value in it on the options page. Until you see the value that is in that field echoed by the following you can’t get any choices.

    
    $choices = get_field('test2', 'option', false);
       // see what's in choices
       echo '<pre>',htmlentities($choices),'</pre>';