acf-composer icon indicating copy to clipboard operation
acf-composer copied to clipboard

Compose ACF Fields, Blocks, Widgets, and Option Pages with ACF Builder on Sage 10.

Results 39 acf-composer issues
Sort by recently updated
recently updated
newest added

Is it possible to change the default values within $supports when generating a new block?

![Screenshot](https://i.imgur.com/DGlmPtJ.png) ## Change log ### Enhancements - ✨ Add interactive block creation (Fixes #253) - ✨ Allow customizing the default block supports options (Fixes #251) - β™» Simplify the localized...

![Screenshot](https://i.imgur.com/daywH7Z.png) ![Screenshot 2](https://i.imgur.com/GYxs2xm.png) ![Screenshot 3](https://i.imgur.com/m8SUqPE.png)

When I generated a new block called Hero and I tried to overwrite the prefix from `acf/` to `custom/` for example. Problem was that it still rendered with `acf/` prefix...

Explicitly setting `align: ""` β€” such as when a user sets alignment to β€œnone” β€” does not persist. It’s stripped during editor load, before saving, causing the block to fall...

I am using ACF Composer v3.4.3 I added a block and I am not able to validate the required fields. Saving the current post, without inserting none of the required...

Don't move `supports['align_text']` to `supports['typography']['textAlign']` and re-add `align-text-*` class to legacy blocks. New blocks now have text alignment in `supports['typography']['textAlign']`.

Hi, how about adding support for the Icon Picker field? I don't know if the following code would be sufficient. ```php # src/FieldsBuilder.php /** * @param string $name * @param...

In the following example, the `foo` group is not rendered: ``` ->addGroup('base') ->addPartial(Links::class) ->modifyField('items', ['min' => 0]) ->getField('items') ->addText('eyebrow') ->endGroup() ->addGroup('foo') ->endGroup(); ```