ACF local_json not visible in Field Groups list [closed]
Question
Having the following ACF filters
add_filter('acf/settings/load_json', function ($paths) {
unset($paths[0]);
$paths[] = get_stylesheet_directory() . '/resources/acf-json';
return $paths;
});
add_filter('acf/settings/save_json', function ($path) {
$path = get_stylesheet_directory() . '/resources/acf-json';
return $path;
}, 1);
acf/settings/load_json
is not showing the loaded files under the Field groups.
I see that are published but are not visible. How do I make the Field groups visible to be able to edit?
0
4 months
0 Answers
14 views
0
Leave an answer
You must login or register to add a new answer .