子类别中的woocommerce-products-header - 删除标题图像

时间:2017-08-29 14:21:09

标签: php css wordpress woocommerce

我已经四处寻找,但似乎无法找到我正在寻找的东西。我在商店中设置了子类别,并为这些子类别分配了图像,因为我希望在您点击主要类别Sub Categories Layout时显示缩略图。

但是,当我点击进入子类别页面时,要显示该子类别中的产品,我为缩略图设置的图像会显示在描述下,非常大。

我不希望产品列表页面上的子类别图像。我可以更改或添加的woocommerce代码中有什么可以实现这一点吗?这就是现在的样子... This我希望它看起来像enter image description here

提前致谢!

1 个答案:

答案 0 :(得分:0)

使用functions.php:

remove_action( 'woocommerce_before_subcategory_title', 'woocommerce_subcategory_thumbnail', 10 );
add_action( 'woocommerce_before_subcategory_title', 'custom_subcategory_thumbnail', 10 );
function custom_subcategory_thumbnail( $category ) {
    if ( $category->parent == '0' ) {
        woocommerce_subcategory_thumbnail( $category );
    } else {
        // do not show a category image
    }
}

使用CSS:

.tax-product_cat ul.products li.product a img {
  display:none
}

注意:此代码已找到here