Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / text string not coming up in developers tool kit

text string not coming up in developers tool kit

Locked

Views: 2,658

Results 1 to 20 of 20
This thread is locked. New replies are disabled.
13 Aug 2006, 4:16 PM
#1
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

text string not coming up in developers tool kit

"Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.
Welcome Guest! Would you like to log yourself in?" where do i go to remove that... i went to "developers tool kit" and tried to do a search for it and it would not come up...

13 Aug 2006, 4:19 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: text string not coming up in developers tool kit

Try a search on:

Congratulations!

see if that doesn't work better for you ...

13 Aug 2006, 4:22 PM
#3
superprg avatar

superprg

Totally Zenned

Join Date:
Feb 2006
Location:
Chicago
Posts:
1,349
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

You can do the partial search rather than searching for the entire text

Anyways, here is the file
includes\languages\english\index.php


} elseif ($category_depth == 'top') {
// This section deals with the "home" page at the top level with no options/products selected
/Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'/
define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.');
} elseif ($category_depth == 'nested') {
// This section deals with displaying a subcategory
/Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'/
define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.');
}


13 Aug 2006, 4:27 PM
#4
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

found it...

ok so this is what i did,

i made a directory in includes\languages\english\ called ddd

copied the index.php file into ddd directory

edited the text out of the index.php file..

so theres includes\languages\english\ddd\index.php

i uploaded the document to my ftp... include\languages\english\ddd\index.php file..

loaded up my website... text is still there.

am i doing something wrong??

13 Aug 2006, 4:35 PM
#5
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: text string not coming up in developers tool kit

Have you created a custom template in the /includes/templates/ddd folder?

This is where Zen Cart becomes aware that there is a template named??? and to look for changed files in all the places where there might be a /ddd folder.

13 Aug 2006, 4:57 PM
#6
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: text string not coming up in developers tool kit

zc-newbie:

found it...

ok so this is what i did,

i made a directory in includes\languages\english\ called ddd

copied the index.php file into ddd directory

edited the text out of the index.php file..

so theres includes\languages\english\ddd\index.php

i uploaded the document to my ftp... include\languages\english\ddd\index.php file..

loaded up my website... text is still there.

am i doing something wrong??What you have described is the correct procedure and should work (assuming that you are substituting youir actualk template directory name for "ddd"). I would double check that edited both the "Congratulations! ... " measages for there are two, and that you uploaded the file to the right place.

Otherwise your template structure is correct excpet that as you are creating a template based on the template_default you should delete the stylesheet_original.css and stylesheet_new.css from your includes\templates\ddd\css folder as these will get in the way of the styles that you define in your stylesheet.css

13 Aug 2006, 4:58 PM
#7
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

kobra:

Have you created a custom template in the /includes/templates/ddd folder?

This is where Zen Cart becomes aware that there is a template named??? and to look for changed files in all the places where there might be a /ddd folder.

hello,

the actual name of the directory is sam..

i do have a sam folder created in the templates folder..

did i place the folder in the wrong area?


found it...

ok so this is what i did,

i made a directory in includes\languages\english\ called ddd

copied the index.php file into ddd directory

edited the text out of the index.php file..

so theres includes\languages\english\ddd\index.php

i uploaded the document to my ftp... include\languages\english\ddd\index.php file..

loaded up my website... text is still there.

am i doing something wrong??

13 Aug 2006, 5:07 PM
#8
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

includes\templates\sam\css\stylesheet.css

so i need to rename that file?

13 Aug 2006, 5:14 PM
#9
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: text string not coming up in developers tool kit

zc-newbie:

did i place the folder in the wrong area?No. The folder is in the right place.

13 Aug 2006, 5:16 PM
#10
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: text string not coming up in developers tool kit

zc-newbie:

includes\templates\sam\css\stylesheet.css

so i need to rename that file?No that file is correct. You need to delete the includes/templates/sam/css/stylesheet_new.css and includes/templates/sam/css/stylesheet_original.css files as they are for the classic template and your sam template is based on template_default, so they will get in the way.

13 Aug 2006, 5:27 PM
#11
superprg avatar

superprg

Totally Zenned

Join Date:
Feb 2006
Location:
Chicago
Posts:
1,349
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

Can I have the url to your cart?

13 Aug 2006, 5:36 PM
#12
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

ygpm thanks!

13 Aug 2006, 5:38 PM
#13
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

kuroi:

No that file is correct. You need to delete the includes/templates/sam/css/stylesheet_new.css and includes/templates/sam/css/stylesheet_original.css files as they are for the classic template and your sam template is based on template_default, so they will get in the way.

so... the css folder is supposed to empty? the files that are in there is..

print_stylesheet

stylesheet.css

stylesheet_css_buttons.css

css_read_me

13 Aug 2006, 5:42 PM
#14
superprg avatar

superprg

Totally Zenned

Join Date:
Feb 2006
Location:
Chicago
Posts:
1,349
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

It is referring to these files

<link rel="stylesheet" type="text/css" href="includes/templates/sam/css/stylesheet.css" /> <link rel="stylesheet" type="text/css" href="includes/templates/sam/css/stylesheet_css_buttons.css" /> <link rel="stylesheet" type="text/css" href="includes/templates/sam/css/stylesheet_new.css" /> <link rel="stylesheet" type="text/css" href="includes/templates/sam/css/stylesheet_original.css" /> You should try changing in these files in the same order and see it works for which ones
13 Aug 2006, 5:44 PM
#15
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

do what? .... not understanding what your recommending..

13 Aug 2006, 5:47 PM
#16
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: text string not coming up in developers tool kit

When I look at your sam/css directory I see

sam/css/stylesheet.css
sam/css/stylesheet_css_buttons.css

sam/css/stylesheet_new.css
sam/css/stylesheet_original.css

sam/css/print_stylesheet.css

Keep the ones in green. Ditch the ones in red.

13 Aug 2006, 5:49 PM
#17
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: text string not coming up in developers tool kit

Additional thought. If you have a local copy, dithcing them from there won't delete them from your server. Maybe that's why your list is different to that which I see when I look at your site.

13 Aug 2006, 6:16 PM
#18
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

kuroi, i deleted those .css files.. the sitedoes look alot clearer. thanks

i'm assuming local copy meaning on my harddrive?

13 Aug 2006, 6:22 PM
#19
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: text string not coming up in developers tool kit

zc-newbie:

i'm assuming local copy meaning on my harddrive?Yes. Sorry, bordering on jargon there.

13 Aug 2006, 6:24 PM
#20
zc_newbie avatar

zc_newbie

New Zenner

Join Date:
Aug 2006
Posts:
98
Plugin Contributions:
0

Re: text string not coming up in developers tool kit

np just needed some clarification :D