Woocommerce从属性中删除产品数量

时间:2014-08-25 20:31:54

标签: wordpress woocommerce

在使用Woocommerce的WordPress安装中,我遇到了前端产品数量错误的问题。这就是我决定删除它的原因。我已将其从侧边栏和任何地方的片段中删除,但不是产品属性。<​​/ p>

是否有任何剪辑可以解决这个问题?

enter image description here

5 个答案:

答案 0 :(得分:1)

以下是使用WooCommerce删除类别名称后的产品数量的快速代码段。当您的主要商店页面列表类别而不是列出产品时,它非常有用。你可以把它放在&#39; functions.php&#39;在你的主题中提交文件。

add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );

function woo_remove_category_products_count() {
  return;
}

答案 1 :(得分:0)

我想我已经有了。

查看functions.php文件包含的内容

<?php
define('ETHEME_DOMAIN', 'legenda');
require_once( get_template_directory() . '/framework/init.php' );

add_filter( 'woocommerce_subcategory_count_html', 'jk_hide_category_count' );
function jk_hide_category_count() {
    // No count
}

add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );

function woo_remove_category_products_count() {
  return;
}

你可以在http://www.karadimos.gr/product-category/xalia/

生活

BTW感谢您的回复!!!

答案 2 :(得分:0)

添加

small.count 
{
    display: none !important;
}

到您的样式表应该有效。它应该隐藏产品数量。

答案 3 :(得分:0)

如果您要真正删除(而不仅仅是隐藏),则需要通过在代码末尾添加以下代码来编辑主题function.php文件:

add_filter( 'woocommerce_layered_nav_count', '__return_false' );

它适用于WOOCommerce v 3.4.3

答案 4 :(得分:0)

我刚刚使用代码片段插件(https://wordpress.org/plugins/code-snippets/)编写了以下代码,它在Woocommerce 4.4.1版本中工作得很好

add_filter( 'woocommerce_layered_nav_count', '__return_false' );