Title: Taxonomy terms fields error
Last modified: November 6, 2024

---

# Taxonomy terms fields error

 *  Resolved [ticrea](https://wordpress.org/support/users/ticrea/)
 * (@ticrea)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/taxonomy-terms-fields-error/)
 * ![](https://wordpress.org/8d3d8401-1abb-4a30-bb49-16a3e7dc7a96)
 * The field no longer loads terms if the “Use AJAX for lazy loading of choices?”
   option is enabled.
 * ![](https://wordpress.org/891e0115-ea98-4a01-972c-ceb846b6b8b4)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * (@hwk-fr)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/taxonomy-terms-fields-error/#post-18118555)
 * Hello,
 * Thanks for the feedback!
 * In fact, I was able to reproduce the bug. The issue come from the latest ACF 
   6.3.10 version which added some additional nonce check for fields ajax requests.
 * The latest ACF Extended 0.9.0.8 patch added compatibility fixes regarding this,
   but the ACFE Taxonomy Terms field wasn’t fixed. It is an oversight. I’m adding
   a fix in the next patch.
 * In the meantime, you can fix the issue by adding the following code in your theme’s`
   functions.php` file:
 *     ```wp-block-code
       // ACFE 0.9.0.8: Fix taxonomy terms ajax nonce wih ACF 6.3.10add_filter('acf/prepare_field/type=acfe_taxonomy_terms', 'acfe_fix_taxonomy_terms_ajax_nonce');function acfe_fix_taxonomy_terms_ajax_nonce($field){        if($field['ui'] && $field['ajax']){        $field['nonce'] = wp_create_nonce($field['key']);    }        return $field;    }
       ```
   
 * Thanks again for the report, and sorry for the inconvenience.
 * Regards.
 *  Plugin Author [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * (@hwk-fr)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/taxonomy-terms-fields-error/#post-18123982)
 * Hello,
 * Just a heads up to let you know the latest ACF Extended 0.9.0.9 update fixed 
   this issue.
 * Please update your plugin, and also make sure to remove the previous hotfix code
   I shared from your theme’s `functions.php` file.
 * Have a nice day!
 * Regards.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Taxonomy terms fields error’ is closed to new replies.

 * ![](https://ps.w.org/acf-extended/assets/icon-256x256.png?rev=2071550)
 * [Advanced Custom Fields: Extended](https://wordpress.org/plugins/acf-extended/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/acf-extended/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/acf-extended/)
 * [Active Topics](https://wordpress.org/support/plugin/acf-extended/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/acf-extended/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/acf-extended/reviews/)

## Tags

 * [ajax](https://wordpress.org/support/topic-tag/ajax/)
 * [terms](https://wordpress.org/support/topic-tag/terms/)

 * 2 replies
 * 2 participants
 * Last reply from: [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * Last activity: [1 year, 7 months ago](https://wordpress.org/support/topic/taxonomy-terms-fields-error/#post-18123982)
 * Status: resolved