I have also tried this, but without success either:
// Hide short product descriptions on subcategory pages
add_action( ‘woocommerce_before_subcategory_title’, ‘remove_product_excerpt’, 1 );
function remove_product_excerpt() {
remove_action( ‘woocommerce_shop_loop_item_excerpt’, ‘woocommerce_template_single_excerpt’, 5 );
}
// Show category description on shop page (shop)
add_action( ‘woocommerce_archive_description’, ‘show_category_description’, 5 );
function show_category_description() {
if ( is_product_category() && 0 !== absint( get_query_var( ‘paged’ ) ) ) {
echo ‘
‘ . wpautop( term_description() ) . ‘
‘;
}
}