Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / REMOVE "Congratulations! You have successfully installed.."

REMOVE "Congratulations! You have successfully installed.."

Locked

Views: 3,583

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
17 Jun 2007, 9:16 AM
#1
the2003s avatar

the2003s

New Zenner

Join Date:
Jun 2007
Posts:
11
Plugin Contributions:
0

REMOVE "Congratulations! You have successfully installed.."

Hi. I saw how to change this text on the front page, but I haven't seen any instructions on how to completely remove that section... Any help?

17 Jun 2007, 9:26 AM
#2
ryk avatar

ryk

Totally Zenned

Join Date:
Oct 2004
Location:
Southport, UK
Posts:
3,644
Plugin Contributions:
6

Re: REMOVE "Congratulations! You have successfully installed.."

Just remove all the text between the quotes

17 Jun 2007, 10:44 AM
#3
testuser avatar

testuser

Inactive

Join Date:
Oct 2004
Location:
Houston, TX
Posts:
792
Plugin Contributions:
0

Re: REMOVE "Congratulations! You have successfully installed.."

Depends on the template your using ... but the default is in:

includes/languages/english/index.php

All the way down at the bottom replace:

define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.');

with:

define('HEADING_TITLE', '');

17 Jun 2007, 5:52 PM
#4
the2003s avatar

the2003s

New Zenner

Join Date:
Jun 2007
Posts:
11
Plugin Contributions:
0

Re: REMOVE "Congratulations! You have successfully installed.."

Problem solved, thanks

18 Jun 2007, 3:55 PM
#5
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: REMOVE "Congratulations! You have successfully installed.."

Never ever EVER change the default files. Always use the override system.

To create a very basic custom template (you can build from there), you need:

  • includes/languages/YOUR_TEMPLATE/english.php
  • includes/languages/english/YOUR_TEMPLATE/index.php
  • includes/languages/english/YOUR_TEMPLATE/header.php (to change the logo)
  • includes/templates/YOUR_TEMPLATE/template_info.php
  • includes/templates/YOUR_TEMPLATE/common/tpl_header.php
  • includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
  • includes/templates/YOUR_TEMPLATE/images/logo.gif
  • includes/templates/YOUR_TEMPLATE/css/stylesheet.css

Anywhere you see a /classic/ folder, you can create a folder for your custom template. You can copy the necessary files from either the /classic/ folder, the /template_default/ folder or the parent folder.

Edit includes/templates/YOUR_TEMPLATE/template_info.php to give your template identifying information so you'll recognize it in the admin under tools->template selection.

18 Jun 2007, 5:53 PM
#6
testuser avatar

testuser

Inactive

Join Date:
Oct 2004
Location:
Houston, TX
Posts:
792
Plugin Contributions:
0

Re: REMOVE "Congratulations! You have successfully installed.."

Starvin Marvin :blink: ... Just given him an idea of what file to make a copy of ... He said he had already seen the instructions on how to accomplish it.