Home › Forums › Backend Issues (wp-admin) › Need Urgent Solution on the new notification after the last update › Reply To: Need Urgent Solution on the new notification after the last update
There really is not step-by-step instructions. If you theme was custom coded using ACF you need to search all of the theme files for calls to the_field() and the_sub_field(). If these functions are used and it is on a field where you do not want ACF to remove something then you must replace these function calls with the alternative get_field() and get_sub_field() function calls.
replace
the_field(...);
with
echo get_field(...);
replace
the_sub_field(...);
with
echo get_sub_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.