Support

Account

Home Forums ACF PRO PHP import Reply To: PHP import

  • Some debugging, because, well, that’s odd

    put this just before you try to create the field groups, load a page on the site and see what happens then immediately remove the code. The reason is that this will cause other errors and we’re just trying to find out if the function exists when you are trying to use it.

    
    if (function_exists('acf_add_local_field_group')) {
      echo 'function exists';
    } else {
      echo 'function does not exist';
    }
    die;