Hide category description from category archives in WooCommerce

Hide category description from category archives in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action('woocommerce_archive_description', 'remove_category_archive_description', 2 );
function remove_category_archive_description(){
    if( is_product_category() ) {
        remove_action('woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    }
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.