Support

Account

Home Forums General Issues Json on child theme Reply To: Json on child theme

  • This in child:

    remove_filter('acf/settings/load_json', 'settings_load_json');
    add_filter('acf/settings/load_json', function($paths) {
    	$parent_path = get_template_directory() . '/acf-json';
    	$child_path = get_stylesheet_directory() . '/acf-json';
    	$paths[] = $parent_path;
    	$paths[] = $child_path;
      return $paths;
    });