25% off ProSNIPC25OFF

Move Shop Category Description Below Products

Removes the WooCommerce archive description from above the product grid and re-inserts it below the loop so products appear first.

PHPby SnipCraft
php
<?php
if ( ! class_exists( 'WooCommerce' ) ) {
    return;
}

remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );

add_action( 'woocommerce_after_shop_loop', 'scseed_archive_description_below_products', 15 );
function scseed_archive_description_below_products() {
    if ( is_product_taxonomy() ) {
        woocommerce_taxonomy_archive_description();
    } else {
        woocommerce_product_archive_description();
    }
}
#archive#frontend#layout#shop#woocommerce