Zen Cart Logo
Forums / Setting Up Categories, Products, Attributes / Text Information on shopping cart page

Text Information on shopping cart page

Views: 1,091

Results 1 to 6 of 6
22 Sep 2011, 3:39 PM
#1
melissamiller8 avatar

melissamiller8

New Zenner

Join Date:
Jan 2011
Location:
Iowa
Posts:
87
Plugin Contributions:
0

Text Information on shopping cart page

I tried to remove the text that says "you may want to add some instructions here", but now I have "Text_Information" there, link attached. I'm not real experienced with PhP. We don't have any instructions or anything like that to add. How can I get rid of that?

http://66.147.244.80/~debradew/shop/index.php?main_page=shopping_cart

22 Sep 2011, 4:24 PM
#2
stevesh avatar

stevesh

Black Belt

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

Re: Text Information on shopping cart page

I'm guessing you went to includes/languages/english/shopping_cart.php, and removed this line:

Line #12 : define('TEXT_INFORMATION', 'You may want to add some instructions for using the shopping cart here. (defined in includes/languages/english/shopping_cart.php)');

What you want to do is just remove (or replace) the content inside the single quote marks:

Line #12 : define('TEXT_INFORMATION', '');

22 Sep 2011, 7:49 PM
#3
melissamiller8 avatar

melissamiller8

New Zenner

Join Date:
Jan 2011
Location:
Iowa
Posts:
87
Plugin Contributions:
0

Re: Text Information on shopping cart page

FABULOUS!!!! Thank you SO MUCH!!!:clap:

22 Sep 2011, 8:38 PM
#4
melissamiller8 avatar

melissamiller8

New Zenner

Join Date:
Jan 2011
Location:
Iowa
Posts:
87
Plugin Contributions:
0

Re: Text Information on shopping cart page

Ok, so maybe not so fabulous yet. I removed the "text information" as instructed, but it still shows. Was I to also take out the Here is a copy of my now line-12:

define('', 'You may want to add some instructions for using the shopping cart here. (defined in includes/languages/english/shopping_cart.php)');

I even took out the 'you may want...' and that made no difference either. So I must be missing something here. I wish that the document didn't even have that in there, and if you wanted something you could add it. I can't think what other instructions --- but of course I'm just me.

23 Sep 2011, 10:44 AM
#5
stevesh avatar

stevesh

Black Belt

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

Re: Text Information on shopping cart page

melissamiller8:

define('', 'You may want to add some instructions for using the shopping cart here. (defined in includes/languages/english/shopping_cart.php)');

Nope. You don't remove the TEXT_INFORMATION part, you remove the define value (You may want to add, etc.), leaving the single quotes. Your line 12 should look exactly like this:

Line #12 : define('TEXT_INFORMATION', '');

If you want to add your own text, place it between the single quotes.

23 Sep 2011, 2:13 PM
#6
melissamiller8 avatar

melissamiller8

New Zenner

Join Date:
Jan 2011
Location:
Iowa
Posts:
87
Plugin Contributions:
0

Re: Text Information on shopping cart page

Once again, thank you so much. I should have been able to figure that out.