This snippet will allow you to move your product description below the loop of products.
/**
* Snippet Name: WooCommerce Move Product Category Description Below Product Loop
* Snippet Author: ecommercehints.com
*/
add_action('woocommerce_archive_description', 'ecommercehints_move_category_description_below_products', 2 );
function ecommercehints_move_category_description_below_products() {
if (is_product_category()) {
remove_action('woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 5 );
}
}