I am using a flat rate for my shipping and I want to show that as Shipping and Handling so I have changed flat.php in catalog/includes/languages/english/modules/shipping to
define('MODULE_SHIPPING_FLAT_TEXT_TITLE', 'Shipping and Handling');
However this change has still left behind a pair of () and on the invoices etc. this appears as Shipping and Handling ():
Does anybody know where these () appear in the code so I can remove them?
Change line 120 in checkout_shipping.php
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . ' (' . $quote[0]['methods'][0]['title'] . ')'),
to
'title' => (($free_shipping == true) ? $quote[0]['methods'][0]['title'] : $quote[0]['module'] . $quote[0]['methods'][0]['title']),
James