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

A wrapper class to help write more readable ACF field declarations.

Results 20 acf-codifier issues
Sort by recently updated
recently updated
newest added

Flexible Content Field only holds 1 layout. Every time I try to add a new layout to the Flexible Content Field, it overwrites the previous layout and will only show...

Is there a way to get block settings and attributes in the block template when using PHP renderer (or CallableRenderer)? Currently, PHP renderer [extracts](https://github.com/devgeniem/acf-codifier/blob/master/src/Renderer/PHP.php#L50) only `$fields['data']`, but I would like...

When registering fields for attachments, `hide_label()` has no effect. The resulting CSS for hiding the label is ``` div.acf-field.acf-field-{field-key} > div.acf-label > label { display: none; } ``` but the...

Hi ! Sometimes ACF plugins add their own configuration keys in fields or field groups. is there a way to extend the Field or Group class to add additional properties?...

Hey! since version 1.15.1, repeater fields registered for ACF Options stopped showing their data. It's caused by switching from `acf/init` to `wp_loaded` when registering fields. What was the reason to...

Currently it seems that only != and == operators are supported. I would like to see the rest of the operators included in ACF plugin. * !=empty * ==empty *...

When upgrading to 1.14.x from 1.13 I noticed that conditional logic and `format_value` method stopped working. There might even be more things that have broken when I upgraded but those...

If you pass for example a true/false field **object** for the `add_condition_logic()` method to control visibility of a groupable field, a repeater in this case, the condition will hide the...

Since the V5 of ACF, we can set custom attributes to the wrapper. I've updated the field abstract class to make this possible.

enhancement