Advertisement
fahimmurshed

Move WooCommerce category description to bottom

Jul 25th, 2023
1,073
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. /**
  2.  * Move WooCommerce category description to bottom
  3.  */
  4. function move_woocommerce_category_description() {
  5.     remove_action('woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10);
  6.     add_action('woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 10);
  7. }
  8. add_action('init', 'move_woocommerce_category_description');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement