Support

Account

Home Forums ACF PRO Integrate ACF PRO in a theme Reply To: Integrate ACF PRO in a theme

  • I am having the same problem, I’m including the plugin in my theme as below:

    /* Include Advanced Custom Fields */
    include_once("_includes/acf-pro/acf.php");
    
    add_filter('acf/settings/path', 'my_acf_settings_path');
    function my_acf_settings_path( $path ) {
        // update path
        $path = get_stylesheet_directory() . "/_includes/acf-pro/";
        // return
        return $path;
    }

    I have also tried get_template_directory_uri() and get_bloginfo('stylesheet_directory').

    The plugin is included and activated but I am getting 404 erros for the ACF stylesheets. This happens if (as above) I define the filter underneath the include function. If I put the filter above it then Custom Fields dissappears from the WP admin sidebar.

    404 Errors

    It works fine if I put the folder in plugins but this is not ideal.

    Please help!