wordpress 在WooCommerce变化价格上显示特定的所选产品属性

r9f1avp5  于 2022-11-22  发布在  WordPress
关注(0)|答案(1)|浏览(178)

我正在尝试在产品单页上显示所选的产品属性。
我发现了许多代码,这些代码甚至可以工作,但是所有这些代码都返回所有可用属性的列表。

add_action( 'woocommerce_before_variations_form', 'display_attribute', 5 );
function display_attribute(){
    global $product;
    $output = array();
    if( $verpackung = $product->get_attribute('pa_verpackung') ){
        echo $verpackung;
        $output[] = $verpackung;
    }
}

这是一个可变的产品,我想显示 Package 的大小,这是一个属性。例如:€ 39,-一盒300克。

vmdwslir

vmdwslir1#

下面将显示在所选的可变价格(在可变产品上)之后的相应 Package 类型,例如:"39欧元,一盒300克”

add_filter( 'woocommerce_available_variation', 'set_packaging_type_after_variation_price', 10, 3 );
function set_packaging_type_after_variation_price( $data, $product, $variation ) {
    $targeted_taxonomy  = 'pa_verpackung'; // <== Define here the product attribute taxonomy

    // Loop through variation attributes
    foreach( $data['attributes'] as $variation_attribute => $term_slug ) {
        $attribute_taxonomy = str_replace( 'attribute_', '', $variation_attribute ); // Get product attribute the taxonomy

        // For matching variation attribute …
        if ( $attribute_taxonomy == $targeted_taxonomy ){
            $verpackung  = get_term_by( 'slug', $term_slug, $attribute_taxonomy )->name; // Get the term name
            $verpackung = ' <span class="verpackung">'. __('für eine '). $verpackung .'</span></span>';
            // Set the "packaging" after the selected viariation price
            $data['price_html'] = str_replace( '</span></span>', '</span>' . $verpackung, $data['price_html'] );
            break; // Stop the loop
        }
    }
    return $data;
}

代码在你的活动子主题(或活动主题)的function.php文件中。

相关问题