We are trying to get our product Tag descriptions to the bottom of the page so the products show first. I use this code for product category:
// move category description to bottom of pages
remove_action( 'woocommerce_archive_description',woocommerce_taxonomy_archive_description', 10 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 100 );
but this code not performed on product tag description. how move product tag description from top of product to under on product?