Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Flat Rate ():


2 replies to this topic

#1 korsh

  • Community Member
  • 111 posts
  • Real Name:James O'Sullivan
  • Location:Brisbane, Australia

Posted 02 December 2004, 22:49

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?

#2 sparky3387

  • Community Member
  • 6 posts
  • Real Name:Ryan Frankcombe

Posted 14 December 2004, 09:48

korsh, on Dec 3 2004, 08:49 AM, said:

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?

<{POST_SNAPBACK}>


I am stuck on this as well. I have spent two days already trying to find this code :(

#3 korsh

  • Community Member
  • 111 posts
  • Real Name:James O'Sullivan
  • Location:Brisbane, Australia

Posted 31 December 2004, 09:54

sparky3387, on Dec 14 2004, 07:48 PM, said:

I am stuck on this as well. I have spent two days already trying to find this code :(

<{POST_SNAPBACK}>


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