Answer the question
In order to leave comments, you need to log in
How to move text down on WooCommerce archive page?
On the category page in woocommerce/templates/archive-product.php file do_action( 'woocommerce_archive_description' ); I move it to the very bottom, but the text is still displayed at the top. How can I do that?
Answer the question
In order to leave comments, you need to log in
Do as Anton wrote
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 100 );
Disable the output of the description from the hook on which it hangs via remove_action and connect it after the loop to the appropriate hook using add_action
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question