Remove or change “Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.” in Zen Cart


One of the first things you’ll notice when you install Zen Cart is the message “Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.”.  It is also one of the first things you will want to change!

Zen Cart - Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.

  1. Open the index.php file located in the /includes/languages/english directory.
  2. Find this section of code:
    } 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.');
    }
  3. and modify the define statement as needed.To remove the heading altogether, delete everything within the two quote marks:
    } 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', '');
    } 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', '');
    }

    Or, change the wording between the two quote marks to suit your store:

    } 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', 'Welcome to Joe’s – the home of the finest widgets in the west!');
    } 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', 'Welcome to Joe’s – the home of the finest widgets in the west!');
    }

    ** Be sure to keep the single quote marks in your new define statement.

  4. Save the modified index.php file to your override folder.  This will be /includes/languages/english/CUSTOM/ where CUSTOM represents the name of your current template folder.

This example assumes your Zen Cart default language is English.  Adjust accordingly to suit your language settings.

Zen Cart Home Page

     
   
     

More Zen Cart:

  1. How do I change the colour of the text “Congratulations! You have successfully installed…” in the Simply Kerrin template?
  2. Change title bar in browser from "Zen Cart!, The Art of E-commerce"
  3. Remove or change "Welcome Guest! Would you like to log yourself in?" in Zen Cart
  4. Hi, I like your simply kerrin template. But, how do I change or remove “congratulations! you have…..” in simply kerrin template. I tried using the classic template method as suggested but couldn’t find index.php. Kindly advise, thank you.
  5. Remove “Have you got yours yet?” Image from Home Page of Zen Cart
  1. No comments yet.
(will not be published)

Notify me of followup comments via e-mail. You can also subscribe without commenting.