删除Woocommerce类别的产品数量

时间:2015-03-22 15:54:27

标签: wordpress wordpress-plugin woocommerce

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;  
}

但它不起作用。我从主题编辑器和目录编辑它以确保它的编写。

2 个答案:

答案 0 :(得分:1)

那个适合我:

{{1}}

在WooC tuts的某个地方拿起它。

答案 1 :(得分:0)

试试这个:

/** Remove Showing results functionality site-wide */
function woocommerce_result_count() {
        return;
}