Support

Account

Home Forums General Issues Display WooCommerce Custom Taxonomy ACF Field Reply To: Display WooCommerce Custom Taxonomy ACF Field

  • I just found a way to do it

     <?php $term = get_field('coffee_type_image', 'coffee_type_' . $wcatTerm->term_id);?>
     <a href="<?php echo get_term_link($wcatTerm->slug, $wcatTerm->taxonomy); ?>"><img src="<?php echo $term; ?>" alt="" class="img-responsive"></a>

    This works