For SEO reasons you should have good text on your WooCommerce category pages. But, you may want to display your products first. Add the function below to your child theme functions.php file.
[php]
// 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 );
[/php]
Thank you! It works perfectly!
Hi! This was super helpful!
Is it possible to do the same for the store description?
thank you
Wors perfect!
Thanks!
perfect
Its work for me
Thank you!
This was more helpful
Awesome! Glad it worked for you!
Such a big help! I don’t think anyone wants to read a bunch of stuff before looking at the products…
I was searching for this but couldn’t find it until I reached your website. Thanks for helping
I would also like to know that is there any way by that we can show some content above the products and the rest content after the products in the category?
please, let me know if you have a way to solve this.
Hmm. Splitting up the category description would be tricky. I’d probably try to use conditions in a layout maybe?
Hi thanks for the tip. What would be the hook code for the same thing but for the description of the product tag taxonomies?