Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Two questions, pls help

Two questions, pls help

Locked

Views: 962

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
5 Jan 2009, 2:24 PM
#1
naturallybaby avatar

naturallybaby

New Zenner

Join Date:
Jan 2009
Posts:
7
Plugin Contributions:
0

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!

5 Jan 2009, 2:54 PM
#2
afo avatar

afo

Totally Zenned

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

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

// 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

// added defines for header alt and text

  define('HEADER_ALT_TEXT', '');

  define('HEADER_SALES_TEXT', '');
5 Jan 2009, 6:28 PM
#3
naturallybaby avatar

naturallybaby

New Zenner

Join Date:
Jan 2009
Posts:
7
Plugin Contributions:
0

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!

5 Jan 2009, 8:30 PM
#4
afo avatar

afo

Totally Zenned

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

Re: Two questions, pls help

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

// 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');