[FIX] Fields disappearing after clicking "Save Field"
-
This is a 2-step fix.
1. The author left out the “instructions” column. Run this SQL (replace wp_ with your prefix if needed):
ALTER TABLE wp_acf_fields ADD COLUMN instructions text DEFAULT NULL;
2. On line 63 of core/fields_save.php, change
'save_as_cf' => $field['save_as_cf'],
to
'save_as_cf' => (int) $field['save_as_cf'],
https://www.ads-software.com/extend/plugins/advanced-custom-fields/
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘[FIX] Fields disappearing after clicking "Save Field"’ is closed to new replies.