Page 1 of 4 123 ... LastLast
Results 1 to 10 of 34
  1. #1
    Join Date
    Mar 2009
    Posts
    41
    Plugin Contributions
    0

    Default Front Page Editing how to get rid of the"Congratulations, you have successfully text

    Last time I tried to edit the front page where it says "Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution." I totally took away my whole site. I had to start all over again. Now I thought I would ask first before I do it again. ah duh... can someone please walk me thru this editing..

    where is it again that I do edit that text and please show me exactly how it should look like. I'm sorry but i do not know css and when you should have : and ? and such.. when I edited last time I just took out that statement and when i did so i lost everything. I thought it might be because somehow I had no bracket or something like that, as if I left something off but I looked and looked and couldnt see what I had done so very frustrated I deleted my whole data base and started new. well here I am again at this point ..
    Sorry if this is you millionth time explaining but I have looked and do not understand..

    also where is the area for editing " Tagline Here" on the very top of my page

    my site is at http://www.outlawwomenscrapbookemporium.cn

    someone please advise.

    Thanks
    Cat

  2. #2
    Join Date
    Jun 2003
    Posts
    33,715
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    Scroll down this page to the similar threads for the answer.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  3. #3
    Join Date
    Mar 2009
    Posts
    41
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    sorry but i have scrolled down the page and find nothing similar except someone that doesn't know how to change the sideboxes not to read the "Zen Cart" stuff.. Please point me into the right direction. I have edited the page thru define pages its just that one part that that I had recently edited in a file and when I deleted it in the .php file I lost everything... all I'm asking is to tell me where to edit this and what it should look like so I don't leave anything out..

    thank you
    Cat

    http://www.outlawwomenscrapbookemporium.cn

  4. #4
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,173
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    Out,
    The easiest way to find this information is click on the orange tab on the top of this page called: Tutorials/FAQ https://www.zen-cart.com/tutorials/index.php


    1. Search for the wording you are asking about. EX: Congratulations

  5. #5
    Join Date
    Mar 2009
    Posts
    41
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    sorry i meant to add that I know I change this in my index file.. I did that before and just excluded that part and added "welcome..." I lost my whole site doing this and dont want to happen again.. all I need is someone to show me the edit and is that the only place that needs to be edited..

  6. #6
    Join Date
    Mar 2009
    Posts
    41
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    I have already done that and this is all you get


    How do I change the "Congratulations! you have successfully installed..." Message?
    CAPITALIZED words refer to a folder or language that you choose. We use CUSTOM for your template and ENGLISH for your language by default. These generic terms should be change


    does this tell you where to find the file and what it should look like when it's done?

    I think not.. please tell me where and exactly what it should look like the changes I make..

    thank you

  7. #7
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,173
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    Outlaw,
    Have you created a custom template,if so what is her name?? I see you are using classic

    OK,
    includes/languages/ENGLISH/index.php

  8. #8
    Join Date
    Mar 2009
    Posts
    41
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    this is how it reads, please just tell me what to edit

    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.'); }?>

    i am confused because of the "Else if" part.. i dont understand where they want you to edit it. can I just take out the part that says you have successfully.... and leave it blank... i dont want to crash again after all my work

    please advice

  9. #9
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,174
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    Yes, it DOES tell you where to find the file.

    1) Create a folder for your custom template under includes/languages/english/. To use the same example as the tutorial, you should have includes/languages/english/CUSTOM/.

    2) Copy includes/languages/ENGLISH/index.php to includes/languages/english/CUSTOM/index.php

    3) With a good text editor like Crimson Editor or Notepad++, open includes/languages/english/CUSTOM/index.php and at the bottom of the file, you'll find:

    Code:
      // 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.');
    }
    Change or remove the text I've highlighted in red.

    4) Save includes/languages/english/CUSTOM/index.php
    5) Upload includes/languages/english/CUSTOM/index.php to the appropriate folder on your website.
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  10. #10
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,173
    Plugin Contributions
    0

    Default Re: Front Page Editing how to get rid of the"Congratulations, you have successfully

    Quote Originally Posted by outlawcat View Post
    this is how it reads, please just tell me what to edit

    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.'); }?>

    i am confused because of the "Else if" part.. i dont understand where they want you to edit it. can I just take out the part that says you have successfully.... and leave it blank... i dont want to crash again after all my work

    please advice
    Out,
    No problem, when I first started I was in this same situation..

    The highlighted red font above will help you..
    The second highlighted red font is used when you change how the page will look in the admin panel/ configuration.....

    So the first one is your fix, most important part is leave the single quotes on either side of the wording EX: 'wording', just change wording and leave the single quotes..

 

 
Page 1 of 4 123 ... LastLast

Similar Threads

  1. How to get rid of the Congratulations! You have successfully installed your Zen Cart?
    By lilguppy in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 30 Oct 2010, 02:19 AM
  2. Replies: 11
    Last Post: 31 Mar 2010, 01:06 PM
  3. I am trying to get rid of the congratulations you have successfully installed etc.
    By janfal in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 13 Dec 2009, 04:43 AM
  4. Replies: 5
    Last Post: 10 Jul 2009, 01:35 PM
  5. Removing the "Congratulations! You have successfully in.." text from main page
    By chufty bill in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 31 Aug 2006, 02:07 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR