Support

Account

Home Forums General Issues Bug with ACF Pro v5.0.6 – Can't edit / save existing fields Reply To: Bug with ACF Pro v5.0.6 – Can't edit / save existing fields

  • Hi,
    In wp-content\plugins\advanced-custom-fields-pro\fields\taxonomy.php
    try to change (near line 320):
    $term_ids = wp_get_object_terms($post_id, $field[‘taxonomy’], array(‘fields’ => ‘tt_ids‘, ‘orderby’ => ‘none’));
    by
    $term_ids = wp_get_object_terms($post_id, $field[‘taxonomy’], array(‘fields’ => ‘ids‘, ‘orderby’ => ‘none’));

    It works for me (version 5.1.4)

    Eric