I really need help to move the category description to the bottom of the category page between the pagination and the footer?
I have absolutely no idea which file to look for…
I really need help to move the category description to the bottom of the category page between the pagination and the footer?
I have absolutely no idea which file to look for…
You must be logged in to post a comment.
add this to the theme functions.php
you can also change the layout by adding this function also and change the echo code.
you have to change the archive-product.php in
/wp-content/plugins/woocommerce/templates
find this and paste it before the woocommerce_after_main_content_hook :
just solved the same problem
Markus G, In case of pagination ‘woocommerce_archive_description’ is not work for inner paginated pages.
try
<?php echo category_description(); ?>
rather than<?php do_action( 'woocommerce_archive_description' ); ?>
and the 2nd code gives more than just the description.You will also want to delete the description being outputted by your wootheme that noone except for backups seems to be addressing?