Support

Account

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(...);