Page 1 of 1

Checkout - weight still shows for some shipping methods, despite OFF in options

Posted: Fri Oct 20, 2017 5:02 am
by sitedeveloper999
Problem: checkout page shows item weight.
Solution: Stores -> Settings -> Checkout -> Display Weight on Cart Page is set to OFF.

Problem: weight disappeared from the Flat Rate / Free Shipping methods (yay!)...
but the Weight Based Shipping method still shows the weight.

How can I disable the weight display on the Checkout page - regardless of the shipping method?
Or if it's coming from the shipping method itself - how do I disable it for a specific shipping method?

Re: Checkout - weight still shows for some shipping methods, despite OFF in options

Posted: Fri Oct 20, 2017 2:51 pm
by kestas
Yes weight shipping method has own. so if you want to remove the weight you need edit this file:
catalog/model/extension/shipping/weight.php
find line 44

Code: Select all

'title'        => $result['name'] . '  (' . $this->language->get('text_weight') . ' ' . $this->weight->format($weight, $this->config->get('config_weight_class_id')) . ')',
and change to:

Code: Select all

'title'        => $result['name'],
Weight doesn't show anymore...

Good luck