Hello everyone,
How can I display the category description under the product list?
Thank you!
Hey Alex,
Thank you for the inquiry.
You can add this filter in the functions.php file to move the taxonomy archive description below the product list.
add_action('init', function() {
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 11 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 1 );
}, 10);
Best regards,
Ismael