Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Breadcrumb Title question

Breadcrumb Title question

Locked

Views: 1,453

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
26 Mar 2007, 4:13 PM
#1
blackartz avatar

blackartz

New Zenner

Join Date:
Mar 2007
Posts:
2
Plugin Contributions:
0

Breadcrumb Title question

Hi People,

I'm integrating Zencart into an existing site and it's actually going very well. I do have one slight issue though, and I wonder if anyone can shed a little light on it?

Due to the integration with the main site, I already have a 'home page' link in the left navigational column. I've turned the 'home' breadcrumb off on the Zen Cart index page, but would like to keep it deeper within the site structure for navigational purposes. However I feel it's a little confusing to have 2 'home' links so close to each other. You'll see what I mean here.

Is it possible for me to rename the home breadcrumb something like 'storefront' and if so could someone point me in the right direction?

Many thanks,

26 Mar 2007, 6:22 PM
#2
afo avatar

afo

Totally Zenned

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

Re: Breadcrumb Title question

Look in /includes/languages/english/YOUR_TEMPLATE/header.php for the line I highlighted in red

// header text in includes/header.php
  define('HEADER_TITLE_CREATE_ACCOUNT', 'Create Account');
  define('HEADER_TITLE_MY_ACCOUNT', 'My Account');
  define('HEADER_TITLE_CART_CONTENTS', 'Shopping Cart');
  define('HEADER_TITLE_CHECKOUT', 'Checkout');
  define('HEADER_TITLE_TOP', 'Top');
  define('HEADER_TITLE_CATALOG', 'Home');
  define('HEADER_TITLE_LOGOFF', 'Log Out');
  define('HEADER_TITLE_LOGIN', 'Log In');

If you change that 'Home' to 'storefront', that should do it.

Alternately, you could change the link to your site's home page to say something like "Site Home" instead of "Home Page".

26 Mar 2007, 8:42 PM
#3
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Breadcrumb Title question

Nice port of your current site....

You might look at creating ezpages in the cart for your other pages, change the defines_main_page.php to include the movie panel etc etc and then you would not require the other html site pages at all and be able to manage this all from one interface.

Can also change the shop width to 90-95% to match in the stylesheet.css file mainWrapper tag

27 Mar 2007, 10:27 AM
#4
blackartz avatar

blackartz

New Zenner

Join Date:
Mar 2007
Posts:
2
Plugin Contributions:
0

Re: Breadcrumb Title question

Nice one Afo!
Many many thanks, you got it in one :)

I had considered changing the primary navigation's 'home page' title but partly because the store isn't fully operational from an online payments point of view, I wanted to make sure that the heirarchy remained clearly intact with the store being a sub section of the main site. I also hate not being able to discover how to do anything, even if it means asking this illustrious forum for help ;)

To Kobra,
thanks for your kind comment!
I'm a bit pressed for time currently but will certainly investigate the possiblity of using ezpages as you suggest. My slight reservation is that Zen uses a single (un nested) table for part of the layout and the Web Standards pedant in me would rather use pure CSS. Probably a bit daft if I'm honest because it all validates perfectly well.

Thanks again!

27 Mar 2007, 1:42 PM
#5
afo avatar

afo

Totally Zenned

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

Re: Breadcrumb Title question

Glad I could help. :thumbsup: