Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2009
    Posts
    7
    Plugin Contributions
    0

    Default Two questions, pls help

    I'm been following the tutorials with regards to overrides and such, but I must have missed something.

    Here is my site: http://naturally-baby.com/Shop

    1) The two boxes (header_alt_text and header_sales_text), how do I make them go away?

    2) For page 2, 3, 4 etc... I found how to change them in the tuts, but it only changed the titles on those pages, how do I make the changes show up in the sidebox menu?

    Thanks for any help/direction!

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

    Default Re: Two questions, pls help

    In includes/languages/english/YOUR_TEMPLATE/header.php, check the value of HEADER_ALT_TEXT and HEADER_SALES_TEXT.

    The defaults are
    Code:
    // added defines for header alt and text
    
      define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
    
      define('HEADER_SALES_TEXT', 'TagLine Here');
    The proper way to remove them is to remove the text between the single quotes, but leave the single quotes intact, so it should look like
    Code:
    // added defines for header alt and text
    
      define('HEADER_ALT_TEXT', '');
    
      define('HEADER_SALES_TEXT', '');

  3. #3
    Join Date
    Jan 2009
    Posts
    7
    Plugin Contributions
    0

    Default Re: Two questions, pls help

    Thanks, I found I also needed to change the logo.gif to a small invisible pic in order to avoid the box with a red x.

    Any idea on the second question, about the page titles in the sidebar?

    Thanks again!

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

    Default Re: Two questions, pls help

    In includes/languages/YOUR_TEMPLATE/english.php, look for this section and change the information I highlighted in red.

    Code:
    // information box text in sideboxes/more_information.php - were TUTORIAL_
      define('BOX_HEADING_MORE_INFORMATION', 'More Information');
      define('BOX_INFORMATION_PAGE_2', 'Page 2');
      define('BOX_INFORMATION_PAGE_3', 'Page 3');
      define('BOX_INFORMATION_PAGE_4', 'Page 4');

 

 

Similar Threads

  1. v150 I have two Questions please help!!
    By Darion in forum General Questions
    Replies: 3
    Last Post: 30 Dec 2012, 09:01 PM
  2. Two questions, hopefully you have two answers! :)
    By quickening in forum General Questions
    Replies: 4
    Last Post: 12 Aug 2008, 02:41 PM
  3. Two Questions, please help...
    By sdamos in forum Templates, Stylesheets, Page Layout
    Replies: 14
    Last Post: 10 Dec 2006, 01:42 AM

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