Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Changing shipping method text not working

Changing shipping method text not working

Views: 859

Results 1 to 5 of 5
8 May 2014, 8:05 PM
#1
johnnydakota avatar

johnnydakota

New Zenner

Join Date:
May 2014
Posts:
7
Plugin Contributions:
0

Changing shipping method text not working

Hi, I'm trying to change the Store Pick-Up option to "Free Local Delivery" but when I change the storepickup.php, my admin says "MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE". So when I replace it with the original unedited file, it still doesn't change. Any suggestions?

8 May 2014, 10:14 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Changing shipping method text not working

Most likely you didn't leave the single quotes when you changed the define value. Should look like this:

define('MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE', 'Free Local Delivery');

8 May 2014, 10:35 PM
#3
johnnydakota avatar

johnnydakota

New Zenner

Join Date:
May 2014
Posts:
7
Plugin Contributions:
0

Re: Changing shipping method text not working

stevesh:

Most likely you didn't leave the single quotes when you changed the define value. Should look like this:

define('MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE', 'Free Local Delivery');
No, I left the quotes in.

8 May 2014, 10:36 PM
#4
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Changing shipping method text not working

Please copy and paste that line from your file here.

8 May 2014, 10:43 PM
#5
johnnydakota avatar

johnnydakota

New Zenner

Join Date:
May 2014
Posts:
7
Plugin Contributions:
0

Re: Changing shipping method text not working

stevesh:

Please copy and paste that line from your file here.

This is the original file code that I placed back and it's still giving me the "MODULE_SHIPPING..." text in my admin. I doesn't make sense but here is exactly what I have in my storepickup.php. Thanks.

$Id: storepickup.php 1969 2005-09-13 06:57:21Z drbyte $//define('MODULE_SHIPPING_STOREPICKUP_TEXT_TITLE', 'Store Pickup');define('MODULE_SHIPPING_STOREPICKUP_TEXT_DESCRIPTION', 'Customer In Store Pick-up');define('MODULE_SHIPPING_STOREPICKUP_TEXT_WAY', 'Walk In');?>