Home > database >  can I remove "showing" and "result" words from woocommerce result count?
can I remove "showing" and "result" words from woocommerce result count?

Time:11-12

can I remove "showing" and "result" words from woocommerce result count?

Now it is like this showing 1–20 of 7225 results but I want it to be like this 1–20 of 7225

I couldn't find any code about this Thank you

CodePudding user response:

You can override result-count.php template from WooCommerce by copying template in your theme.

Example: To override the result-count template, copy: wp-content/plugins/woocommerce/templates/loop/result-count.php to wp-content/themes/yourtheme/woocommerce/loop/result-count.php.

remove "showing" and "result" words from template.

  • Related