Hi Tom,
Thanks for picking that up so quickly. I don’t have the description checkbox checked as per step one.
It is picking up the ‘term_description’ field.
For example, as you can see in the image the text ‘stronger assembly the uniclic’ etc is in the description field on my category page – this is the live page so you can see what I mean where if you scroll down below the products, the additional text:
https://www.hkuk.co.uk/product-category/kitchen-cabinets/clicbox-kitchen-cabinets/
I’m fairly sure it is calling the category description field which is switched on in the functions file here :
/**
* Prints a category's title and description (no markup added)
*/
add_action( 'woocommerce_after_shop_loop', 'rv_output_category_info' );
function rv_output_category_info() {
if ( is_category() || is_tag() || is_tax() ) {
echo term_description();
}
}
I’m using Genesis | Sample theme if that helps.
Many thanks
Andy