Hi,
I am very sorry that all of these could not help. Check this one also and let me know.
<?php
if(!is_product_category()){
$shop_page = get_post( woocommerce_get_page_id( 'shop' ) );
echo '<div class="page-description">' . apply_filters( 'the_content', $shop_page->post_content ) . '</div>';
}else{
do_action( 'woocommerce_archive_description' );
global $category;
$cat_id=$category->term_id;
$prod_term=get_term($cat_id,'product_cat');
$description=$prod_term->description;
echo '<div class="page-description">' . $description . '</div>';
}
?>
Thanks ๐
With Best Regards
Swift Ideas