Support

Account

Home Forums General Issues my custom field does not appear ? Reply To: my custom field does not appear ?

  • Hi @korkor

    Are you sure you’re looking in the right place?
    In the sourcecode there is a <div class="kwayy-team-group-desc"> but looking at your code template where you post the code there is not.

    That aside. When you work with something other than a post type you need to specify the second parameter as taxonomy_termid.

    So a call to the_field() where you want to fetch info from a term should look like:

    the_field('field_name', 'taxonomy_termid') where taxonomy is your tax slug and termid is the terms id.

    Check this documentation out: https://www.advancedcustomfields.com/resources/get-values-from-a-taxonomy-term/