Support

Account

Home Forums ACF PRO Choose sidebar for page with checkbox field Reply To: Choose sidebar for page with checkbox field

  • Looking at this I would guess that you’re returning “Both (Array)”. You need to either set the field to only return the value or use

    
    $sidebar = get_field('sidebar');
    dynamic_sidebar($sidebar['value']);

    `