Support

Account

Home Forums Backend Issues (wp-admin) Hide taxonomy term in Form and in post Reply To: Hide taxonomy term in Form and in post

  • You need to use

    
    get_field('visibilite', 'term_'.$term->term_id)
    

    OR

    
    get_field('visibilite', $term)
    

    OR

    
    get_term_meta($term->term_id, 'visibilite', true)