This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// the `woocommerce_taxonomy_archive_description` and the `woocommerce_product_archive_description` functions do not display the category's description on pagination | |
// this code removes them from WooCommerce and rewrites them to show the description also on new pages | |
// Before: page 1 (https://d.pr/i/E2iHoD) & page 2 (https://d.pr/i/RiiCOy) | |
// After: page 1 (https://d.pr/i/E2iHoD) & page 2 (https://d.pr/i/DyGEVQ) | |
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 ); | |
remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 ); |