Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1408527

    Hello everyone,

    How can I display the category description under the product list?

    Thank you!

    #1408632

    Hey Alex,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to move the taxonomy archive description below the product list.

    add_action('init', function() {
        remove_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 11 );
        add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 1 );
    }, 10);
    
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.