name = __( 'Subtotal', 'wpc-conditions' ); $this->slug = __( 'subtotal', 'wpc-conditions' ); $this->group = __( 'Cart', 'wpc-conditions' ); $this->description = __( 'Compared against the order subtotal', 'wpc-conditions' ); parent::__construct(); } public function get_value( $value ) { return str_replace( ',', '.', $value ); } public function get_compare_value() { return WC()->cart->subtotal; } } }