Home › Forums › General Issues › Custom WYSIWYG Field in WooCommerce Product Category › Reply To: Custom WYSIWYG Field in WooCommerce Product Category
Eventually figured this out! FYI, here’s the code in case it helps anyone. The name of my WYSIWYG field is ‘about_this_product_category’, which you would replace with your own field name.
<?php
// vars
$queried_object = get_queried_object();
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;
// load desc for this taxonomy term (term object)
$thumbnail = get_field('about_this_product_category', $queried_object);
// load desc for this taxonomy term (term string)
$thumbnail = get_field('about_this_product_category', $taxonomy . '_' . $term_id);
?>
<?php the_field( 'about_this_product_category', $queried_object ); ?>
I copied the archive-product.php from the WooCommerce plugin directory into a new /woocommerce/ folder inside my theme.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.