Pages

Showing posts with label Remove Showing x Results. Show all posts
Showing posts with label Remove Showing x Results. Show all posts

Tuesday 15 March 2016

WooCommerce remove Showing x Results - Shop Page

To remove the "Showing x Results" from WooCommerce site wide paste the following code in your theme functions.php.
// remove result count site-wide
function woocommerce_result_count() {
        return;
}