0
我的數據庫中的每個產品都有一個「pa_producator」屬性,我想要以下東西: 當pa_producator等於「Bosch」時,僅對該產品應用10%的折扣,而不是整車。這可能嗎?到目前爲止,我只有以下代碼:Woocommerce折扣如果有某些屬性
add_action('woocommerce_before_cart_table', 'discount_producer');
function discount_producer() {
global $woocommerce;
$test = $woocommerce->cart->get_cart();
foreach($test as $product) {
$test = get_the_terms($product['product_id'], 'pa_producator');
$producator = $test[0]->name;
}
}
我該如何爲這些產品申請折扣?