在归档类别页面上显示特定的产品属性值

时间:2016-09-19 19:15:36

标签: php wordpress woocommerce attributes product

我想在WooCommerce的类别页面上显示特定的产品属性。在简短描述之前,属性将显示在产品标题之后。

属性为 pa_nopeus pa_liito pa_vakaus {{ 1}} 即可。它们只是数值。我只是想显示值而不是名字,非常像这样:

pa_feidi

如果产品中不存在这些值,则根本不会显示该行。

我想将此添加到(模板)代码而不是使用插件。我相信它会被添加到 Product Name 4 / 4 / 1 / 2 Short description

content-product.php.

我怎样才能做到这一点?

由于

1 个答案:

答案 0 :(得分:1)

  

执行您期望的最佳方式(不覆盖模板)是使用我们挂钩 'woocommerce_shop_loop_item_title' 挂钩的功能。

在这种情况下,下面的代码会出现在您的活动子主题(或主题)的function.php文件中。

以下是代码:

// For WooCommerce below version 3.0
add_action( 'woocommerce_shop_loop_item_title', 'custom_attributes_display', 20 );
function custom_attributes_display(){

    // Just for product category archives pages
    if(is_product_category()){
        global $product;

        // the array of attributes names
        $attribute_names = array('pa_nopeus', 'pa_liito', 'pa_vakaus', 'pa_feidi');
        foreach( $attribute_names as $key => $attribute_name ) {

            // Getting the value of an attribute
            $attribute_value = array_shift(wc_get_product_terms( $product->id, $attribute_name));

            // Displays only if attribute exist for the product
            if(!empty($attribute_value) || $attribute_value == '0' ){ // Updated
                echo $attribute_value;

                // Separating each number by a " / "
                if($key < 3) echo ' / ';
            }
        }
    }
}
  

对于woocommerce 3.0+,请参阅:Add Attributes to Short Description in WooCommerce 3.0+

因此,您将在产品类别档案页面上获得您所期望的标题。

或者您可以使用上面的代码 content-product.php ,这样:

#content-product.php start.... 

do_action( 'woocommerce_shop_loop_item_title' );

/////////////// HERE IS THE CODE ////////////////

// Just for product category archives pages
if(is_product_category()){
    global $product;

    // the array of attributes names
    $attribute_names = array('pa_nopeus', 'pa_liito', 'pa_vakaus', 'pa_feidi');
    foreach( $attribute_names as $key => $attribute_name ) {

        // Getting the value of an attribute
        $attribute_value = array_shift(wc_get_product_terms( $product->id, $attribute_name));

        // Displays only if attribute exist for the product
        if(!empty($attribute_value) || $attribute_value == '0' ){
            echo $attribute_value;

            // Separating each number by a " / "
            if($key < 3) echo ' / ';
        }
    }
}


/**
 * woocommerce_after_shop_loop_item_title hook.
 *
 * @hooked woocommerce_template_loop_rating - 5
 * @hooked woocommerce_template_loop_price - 10
 */
do_action( 'woocommerce_after_shop_loop_item_title' );

#rest of the content-product.php...

但第一种解决方案更值得推荐和优雅。

代码经过测试并正常运行