pic http://goo.gl/hnRfG9
我想隐藏产品计数表单类别:我在主题的functions.php
add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
function woo_remove_category_products_count() {
return;
}
但它不起作用。我从主题编辑器和目录编辑它以确保它的编写。
答案 0 :(得分:1)
那个适合我:
{{1}}
在WooC tuts的某个地方拿起它。
答案 1 :(得分:0)
试试这个:
/** Remove Showing results functionality site-wide */
function woocommerce_result_count() {
return;
}