Hide Add to Cart button in Woocommerce product variations for a specific attribute value

前端 未结 2 1340
攒了一身酷
攒了一身酷 2020-12-21 18:08

In Woocommerce, I\'m trying to hide add to cart button for variations with a specific selected value for one of attributes. There are two attributes for each variation (

2条回答
  •  感情败类
    2020-12-21 18:16

    Use your slug text for term_name

    add_filter( 'woocommerce_variation_is_purchasable', 'conditional_variation_is_purchasable', 20, 2 );
    function conditional_variation_is_purchasable( $purchasable, $product ) {
    
        ## ---- Your settings ---- ##
    
        $taxonomy  = 'pa_size';
        $term_name =  'XL';
    
        ## ---- The active code ---- ##
    
        $found = false;
    
        // Loop through all product attributes in the variation
        foreach ( $product->get_variation_attributes() as $variation_attribute => $term_slug ){
            $attribute_taxonomy = str_replace('attribute_', '', $variation_attribute); // The taxonomy
            $term = get_term_by( 'slug', $term_slug, $taxonomy ); // The WP_Term object
            // Searching for attribute 'pa_size' with value 'XL'
            if($attribute_taxonomy == $taxonomy && $term->slug == $term_name ){
                $found = true;
                break;
            }
        }
    
        if( $found )
            $purchasable = false;
    
        return $purchasable;
    }

提交回复
热议问题