Does anyone know how to remove the parentheses around FedEx shipping methods?
This is what I have:
(FedEx Priority OvernightŪ ):
This is what I want:
FedEx Priority OvernightŪ:
Does anyone know how to remove the parentheses around FedEx shipping methods?
This is what I have:
(FedEx Priority OvernightŪ ):
This is what I want:
FedEx Priority OvernightŪ:
I don't have the fedex shipping module installed, but I assume you would find the file to edit in includes/languages/english/modules/shipping/
I went to the directory you suggested and this is the code there:
define('MODULE_SHIPPING_FEDEX_EXPRESS_TEXT_TITLE', ' ');
define('MODULE_SHIPPING_FEDEX_EXPRESS_TEXT_TITLE1', '');
define('MODULE_SHIPPING_FEDEX_EXPRESS_TEXT_DESCRIPTION', 'Federal Express<br><br>You will need to have registered an account with FedEx and proper approval from FedEx identity to use this module. Please see the README.TXT file for other requirements.');
I also went to /includes/modules/shipping and this is what's there:
if (MODULE_SHIPPING_FEDEX_EXPRESS_STANDARD_OVERNIGHT == 'true') $this->domestic_types['05'] = 'FedEx Standard Overnight<sup><font size="1">®</font></sup> <span id="commentsExpress">(Delivers by 03:00pm in most areas)</span>';
I just cant seem to find what would cause parentheses to appear. Any ideas?