I am trying to print an ACF
field after the WooCommerce archive page title.
I use the following code but not working.
woocommerce_page_title();
global $post;
if( get_field('acf_field',$taxonomy . '_' . $termId) ):
$taxonomy = get_query_var('taxonomy');
$term_id = get_queried_object()->term_id;
the_field('acf_field', $taxonomy . '_' . $term_id);
else:
endif;