Brandon
Brandon
Thanks for testing! Published v2.0.8 that you can swap over too.
Going to push a small change to this – you will have to explicitly set `$example` to `false` to not show block previews. This is due to situations where a...
no problems with 6.0 on my end.
Please open an issue on the ACF Composer repo. This issue is unrelated to ACF Builder.
```php add_action('init', function () { $fields = glob(config('theme.dir').'/app/{fields,fields/partials}/*.php', GLOB_BRACE); array_map(function ($field) { if ($fields = require_once($field)) { if (is_array($fields)) { array_map(function ($field) { if ($field instanceof FieldsBuilder) { return acf_add_local_field_group($field->build());...
Thought I'd also say how I'm currently implementing it is simply having a `metabox.php` for post/page/etc., `widgets.php` for my ACF-powered sidebar widgets, `options.php` for my theme options, and then everything...
Thought I'd update with a small rewrite of how I'm registering fields in Sage 9 utilizing `collect()`: ```php /** * Initialize ACF Builder */ add_action('init', function () { collect(glob(config('theme.dir').'/app/fields/*.php'))->map(function ($field)...
If anyone wants to do a PR adding these to the block stub `$supports` as well as using some of the logic from @daverobertson's post above to add the classes...
Not being able to reproduce this. Are you using it as a _Legacy Widget_ with the new block widgets?