Steve Pfisterer

Results 59 comments of Steve Pfisterer

Looking through the code, https://github.com/StoutLogic/acf-builder/blob/master/src/FieldManager.php#L131-L140 calls `getFieldIndex` to determine if it the field name exists or not and then catches the exception if it doesn't. Since it gets caught, I...

The issue is the way ACF builder creates unique field keys. Instead of being randomly generated like how ACF proper does it, ACF builder name spaces field keys by their...

@alicam: 1. I read in the ACF change log about the clone type, it was released after I initially released this library. It does seem handy if you use the...

Been thinking about the the addField, the easy thing to do would be to hook into __call and if it detected addFieldType('name'), it would convert that to addField('name', 'field_type'). Other...

Finally going to implement this, it seems that basically we should make the value parameter optional(?)

When you do `print_r($theme_options->build());` what is the output?

@thomasjulienalain Hm I'm not sure, it _should_ be working. If you try with the ACF UI, does it work?

@voyou-sbeaulieu This is very weird considering the output looks correct when compared to the way acf itself outputs the field configuration. I finally had a chance to try this locally:...

@sunsuron Thanks for the detailed screen captures. I can't say I have much experience with Blocks, let alone using ACF and ACF Builder with blocks. Are you able to look...

Hm, or actually blocks don't use post meta do they? The content gets stored in the post's content field right? Can you take a look there and let me know...