سلام دوباره دوستان در وردرپرس و افزونه ووکامرس: برای بخش کارمزد بنده افزونه تخفیف را woocommerce-bulk-discount به کارمزد تغییر دادم یعنی در بخشی که قرار است بصورت تخفیف مبلغ کسر شود, مبلغ اضافه میشود: public function filter_cart_product_subtotal( $subtotal, $_product, $quantity ) { if ( !$_product || !$quantity ) { return $subtotal; } if ( $this->coupon_check() ) { return $subtotal; } if ( get_post_meta( $_product->id, "_bulkdiscount_enabled", true ) != '' && get_post_meta( $_product->id, "_bulkdiscount_enabled", true ) !== 'yes'