AdvancedCustomFields / AdvancedCustomFields/acf
Critical - ACF Blocks V3 - field values not saved to metadata until changed
Nobody has claimed this yet.
- Dominant language
- PHP
- Stars
- 945
- Forks
- 197
- PR merge metrics
- No merged PRs in 30d
Description
Describe the bug
When using v3 blocks, field values are not saved to the block metadata until a field value is specifically changed. This results in effects such as default values not working.
To Reproduce
Steps to reproduce the behavior:
- Create the block and field group via the code below.
- Add a new post, and insert the block. You will see the checkbox is checked, and the get_field code outputs that it is checked.
- Publish the post, and view it on the front-end. It says the checkbox is not checked.
- Reload the editor, and it will also say it is not checked.
- Click on the block to edit it, and the editor preview will quickly changed to checked again.
- During any stage of the above, switch to the code editor, and see the block metadata is empty.
- Repeat all of the above, replacing
"blockVersion": 3with"mode":"preview"in block.json, to show that it used to work correctly in v2 blocks.
Note that if you remove the InnerBlocks line from the render template, you get slightly different results - the preview shows correctly in the editor even without clicking the block, but it still doesn't save.
Only by unchecking and then rechecking the checkbox will it save.
Expected behavior
Block fields should be saved to the block when first inserted.
Screenshots or Video
https://github.com/user-attachments/assets/5dc16eae-0ff7-42a2-9194-06bbc0b5ec5d
Code
Field export:
{
"key": "group_68d08a422dee3",
"title": "Test block",
"fields": [
{
"key": "field_68d08a4483410",
"label": "Test field",
"name": "test_field",
"aria-label": "",
"type": "true_false",
"instructions": "",
"required": 0,
"conditional_logic": 0,
"wrapper": {
"width": "",
"class": "",
"id": ""
},
"message": "Test field",
"default_value": 1,
"allow_in_bindings": 0,
"ui": 0,
"ui_on_text": "",
"ui_off_text": ""
}
],
"location": [
[
{
"param": "block",
"operator": "==",
"value": "acf\/testblock"
}
]
],
"menu_order": 0,
"position": "normal",
"style": "default",
"label_placement": "top",
"instruction_placement": "label",
"hide_on_screen": "",
"active": true,
"description": "",
"show_in_rest": 0,
"display_title": ""
}
]
block.json:
{
"name": "acf/testblock",
"title": "Test block",
"acf": {
"renderTemplate": "testblock.php",
"blockVersion": 3
}
}
render template:
<p><?php if (get_field('test_field')) echo 'Checkbox is checked'; else echo 'Checkbox is not checked'; ?></p>
<InnerBlocks />
Version Information:
- WP 6.8.3
- ACF Pro 6.6.1
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the issue with the supplied block.json and PHP render template using WP 6.8.3 and ACF Pro 6.6.1, comparing blockVersion 3 with the v2 mode setting. Trace how the initial field value and block metadata are saved when the block is inserted. Done means default field values are saved to block metadata without requiring a manual change, including when InnerBlocks is present.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- php
- Domain
- backend, web-dev
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Active
- Clarity
- Mostly clear
- Newbie friendliness
- 68/100