name = __( 'Weight', 'wpc-conditions' ); $this->slug = __( 'weight', 'wpc-conditions' ); $this->group = __( 'Cart', 'wpc-conditions' ); $this->description = __( 'Weight calculated on all the cart contents', 'wpc-conditions' ); parent::__construct(); } public function get_value( $value ) { return str_replace( ',', '.', $value ); } public function get_compare_value() { return WC()->cart->get_cart_contents_weight(); } } }