Support

Account

Home Forums General Issues Values from a taxonomy term as a sub-field Reply To: Values from a taxonomy term as a sub-field

  • Interesting timing. I had this same problem… I got this to work by adding just a little tweak.

    Change:
    <h2><?php echo $term->slug; ?></h2>

    To:
    <?php echo $term[0]->slug; ?>