Home › Forums › Backend Issues (wp-admin) › Migrating a repeater into a nested repeater using phpMyAdmin › Reply To: Migrating a repeater into a nested repeater using phpMyAdmin
I’d use the “update” from my sql on the wp-postmeta to change the meta_value of the fields, to the new field key. Make a backup before 🙂
Update wp_postmeta set meta_value = 'new field key' where meta_value='old field key' and substr(meta_key,1,1) = '_'
Note that the meta value has to be in the form field_llnmc9c86353a
The second condition is just to check where are dealing with the right meta
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.