Checkout_shipping page text change
Posted: Sat Jan 20, 2024 2:34 pm
Test store using 1.0.8.20 PHP8
I use raiwa's ship in cart addon but I don't think this affects it as the code seems to be in a core code module.
On the checkout shipping page the shipping methods show with a weight under the method which only shows as a figure and no weight type. (See left image below).
To remove that figure I have remove the following bit of code from the templates/default/includes/pages/checkout_shipping.php. The list now looks like the righthand image. I will copy this to the override folder when everything is working as I would like.
Is that the correct way of removing that code as I cannot see a setting anywhere to not show shipping weight.
Also, should it show something after the weight figures like Kg or grammes or lbs or what ever weight the store owner uses.
I use raiwa's ship in cart addon but I don't think this affects it as the code seems to be in a core code module.
On the checkout shipping page the shipping methods show with a weight under the method which only shows as a figure and no weight type. (See left image below).
To remove that figure I have remove the following bit of code from the templates/default/includes/pages/checkout_shipping.php. The list now looks like the righthand image. I will copy this to the override folder when everything is working as I would like.
Code: Select all
if (!Text::is_empty($method['title'])) {
echo '<div class="form-text">' . $method['title'] . '</div>';
}Also, should it show something after the weight figures like Kg or grammes or lbs or what ever weight the store owner uses.