WooCommerce从商店页面中排除某些产品属性

时间:2016-09-28 17:09:38

标签: php wordpress woocommerce attributes storefront

我一直在抨击这个人。目前,要在商店页面上显示所有自定义产品属性(不要与产品页面混淆),我使用:

function show_attr() {
   global $product;
   echo '<div class="attributes">';
   $product->list_attributes();
   echo'</div>'
}

这很好用,并显示所有产品属性,但我只想包含某些属性。我也尝试过this person's建议:

<?php foreach ( $attributes as $attribute ) :
    if ( empty( $attribute['is_visible'] ) || 'CSC Credit' == $attribute['name'] || ( $attribute['is_taxonomy'] && ! taxonomy_exists( $attribute['name'] ) ) ) {
        continue;
    } else {
        $has_row = true;
    }
?>

所以不幸的是,这也没有用。我能够删除所需的属性,但它会在每个页面上删除它,我想从商店页面中将其 排除。

我看到$属性变量具有此[is_visible]条件。有没有人对如何删除商店页面上的特定属性有任何想法?我完全失败了。感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

如我的评论中所述,您可以通过woocommerce_get_product_attributes过滤器控制任何商品的属性。通过此过滤器的$attributes位于数组的关联数组中。使用属性的“slug”作为数组键。例如,var_dump()可能会显示以下$attributes

array (size=1)
  'pa_color' => 
    array (size=6)
      'name' => string 'pa_color' (length=8)
      'value' => string '' (length=0)
      'position' => string '0' (length=1)
      'is_visible' => int 0
      'is_variation' => int 1
      'is_taxonomy' => int 1

如果属性是分类法,则slug将以“pa_”开头,我一直认为它代表产品属性。不是分类法的属性只会有slug的名称,例如:“size”。

使用WooCommerce Conditional tags,您可以专门定位商店页面上的属性。

以下是两个示例过滤器,第一个用于排除特定属性:

// Exclude a certain product attribute on the shop page
function so_39753734_remove_attributes( $attributes ) {

    if( is_shop() ){
        if( isset( $attributes['pa_color'] ) ){
            unset( $attributes['pa_color'] );
        }
    }

    return $attributes;
}
add_filter( 'woocommerce_product_get_attributes', 'so_39753734_remove_attributes' );

后者用于根据您希望包含的属性构建自定义属性列表。

// Include only a certain product attribute on the shop page
function so_39753734_filter_attributes( $attributes ) {

    if( is_shop() ){
        $new_attributes = array();

        if( isset( $attributes['pa_color'] ) ){
            $new_attributes['pa_color'] = $attributes['pa_color'] ;
        }

        $attributes = $new_attributes;

    }

    return $attributes;
}
add_filter( 'woocommerce_product_get_attributes', 'so_39753734_filter_attributes' );

已更新 2018年3月29日woocommerce_product_get_attributeswoocommerce_get_product_attributes已被弃用。

答案 1 :(得分:0)

试试这个!

<?php
if (is_page('shop')) {
    foreach ( $attributes as $attribute ) :
        if ( empty( $attribute['is_visible'] ) || 'CSC Credit' == $attribute['name'] || ( $attribute['is_taxonomy'] && ! taxonomy_exists( $attribute['name'] ) ) ) {
            continue;
        } else {
            $has_row = true;
        }
    }
?>