Thanks @lorro
I’m using the premium Avada 5.0 theme.
Add this to the functions.php file in my child theme.
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );
add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description' );
add_action( 'woocommerce_after_main_content', 'woocommerce_product_archive_description' );
First, it showed up in the sidebar, but when I removed the position numbers 40 from the add_action, then it worked flawless! Much appreciated