Move woocommerce tag description below products

Viewed 14

We are trying to get our product Tag descriptions to the bottom of the page so the products show first. I use this code for product category:

// 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 );

but this code not performed on product tag description. how move product tag description from top of product to under on product?

1 Answers

There is a typo in your code, a single quote is missing in first line.

here is the correct code:

remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 100 );

it will be better if you move it after the main content wrapper ends by using

add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 15 );
Related