Home › Forums › Backend Issues (wp-admin) › Found root cause for fields not saving (using ACF PRO 5.0.8) › Reply To: Found root cause for fields not saving (using ACF PRO 5.0.8)
I had a similar problem, but it was not only on upgraded fields ; but also on new created fields ; nothing saved.
I found that it was the post_name which cause problem.
— post_excerpt is a readable slug
— post_name is a string starting with “field-”
If I change post_name to start with “field_” ; I was able to save my data.
I just run this SQL query and everything seems to work :
UPDATE wp_posts SET post_name = CONCAT( 'field_', SUBSTR( post_name, 7 ) ) WHERE post_type = "acf-field" && post_name LIKE "field-%"
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.