Answer the question
In order to leave comments, you need to log in
Displaying information about the weight of the goods opencart 2x?
Displaying information about the weight of the goods opencart 2x
Warning: A non-numeric value encountered in /public_html/system/storage/modification/admin/controller/sale/order.php on line 2038
'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point'))
Answer the question
In order to leave comments, you need to log in
Try to "hard" cast to the desired type (float)$option_weight
'weight' => $this->weight->format(($product_info['weight'] + (float)$option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point'))
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question