2
Ich habe diese Filter in WooCommerce Quellcode:WooCommerce Filter Anpassung (vs Boden Rundung)
$this->total = max(0, apply_filters('woocommerce_calculated_total', round($this->cart_contents_total + $this->tax_total + $this->shipping_tax_total + $this->shipping_total + $this->fee_total, $this->dp), $this));
Ich möchte diese Änderung mit meinem Filter anzuwenden, aber ich kann nicht verstehen, wie.
$this->total = max(0, apply_filters('woocommerce_calculated_total', floor(($this->cart_contents_total + $this->tax_total + $this->shipping_tax_total + $this->shipping_total + $this->fee_total) * 100)/100, $this));
Jede Hilfe wird geschätzt. Ein Gruß!