I have working on removing the (Best Way) text for the shipping estimate. It is set up for per weight unit shipping.
I was able to remove the text here in this file: /store/includes/languages/*your language"/modules/shipping edit the table.php
,however the () remains. So I followed the instructions on this thread, but with no success.
http://www.zen-cart.com/showthread.p...t=best*%20way*
Here are my edits in that file.
Original:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . '
( ' . $quote[0]['methods'][0]['title'] . '
)'),
Edited:
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' ' . $quote[0]['methods'][0]['title'] . ''),
Am I in the right file?
Bookmarks