Support

Account

Home Forums Front-end Issues ACF not working on moved site Reply To: ACF not working on moved site

  • Hm i got “Notice: Array to string conversion in… line 7/line 9

    <?php
    global $options;
    foreach ($options as $value) {
    if(!isset($value[‘id’])) continue;
    if (get_option( $value[‘id’] ) === FALSE) {
    if(isset($value[‘std’]))
    $$value[‘id’] = $value[‘std’];
    } else {
    $$value[‘id’] = get_option($value[‘id’]);
    }
    }
    ?>

    It looks too complicated for me