Home › Forums › Bug Reports › Editor not loading local json of child-theme › Reply To: Editor not loading local json of child-theme
Sorry for coming back this late, we found a solution.
There seems to be an issue with the path acf takes to load the json. When you make changes in one of the jsons of the parent acf saves it in the child theme, as it should however it still reads the parent json.
// Integrating Advanced Custom Fields:
remove_filter('acf/settings/save_json', 'settings_save_json');
add_filter('acf/settings/save_json', function() {
return get_stylesheet_directory() . '/acf-json';
});
remove_filter('acf/settings/load_json', 'settings_load_json');
add_filter('acf/settings/load_json', function($paths) {
array_push(
$paths,
get_template_directory() . '/acf-json',
get_stylesheet_directory() . '/acf-json'
);
return $paths;
});
This seems to push the paths again.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
🤔 Curious about the ACF user experience? So are we! Help guide the evolution of ACF by taking part in our first ever Annual Survey and guarantee you’re represented in the results. https://t.co/0cgr9ZFOJ5
— Advanced Custom Fields (@wp_acf) May 8, 2023
© 2023 Advanced Custom Fields.
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.