View Single Post
  #7  
Old 03-09-2009, 12:20 AM
  Victor D's Avatar 
Victor D Victor D is offline
 

X-Adept
  
Join Date: Aug 2008
Posts: 643
 

Default Re: Bread Crumbs do not work in Firefox?

The code to produce breadcrumbs are stored in customer/bread_crumbs.tpl so this this template have to be included to print them on page.

to place breadcrumbs in your header you should remove the line
Code:
{include file="customer/bread_crumbs.tpl"}
from your skin1/customer/home.tpl and place it into skin1/customer/head.tpl

But I think the second way is preferrable since it requires no CSS tweaking
so change the last lines of your your skin1/customer/head.tpl to
Code:
{*<div class="line3"> {if $printable_link_visible} <div class="printable-bar"> <a href="{$php_url.url}?printable=Y{if $php_url.query_string ne ''}&amp;{$php_url.query_string|amp}{/if}">{$lng.lbl_printable_version}</a> </div> {/if} </div>*}

and put
Code:
{if $printable_link_visible} <div class="printable-bar"> <a href="{$php_url.url}?printable=Y{if $php_url.query_string ne ''}&amp;{$php_url.query_string|amp}{/if}">{$lng.lbl_printable_version}</a> </div> {/if}

after the line
Code:
<!-- central space -->
into your skin1/customer/home.tpl
__________________
Regards,
Victor Dubiniuk

X-Cart Skins Store
- twenty two different skins for 4.1.x and 4.2.x;
- 4.3.x compatible versions are available;
- refresh you store now!

Smart menu X-Cart add-on for 4.1.8 - 4.3.x
Featured Products Slide Show X-Cart add-on for 4.1.8 - 4.3.x
Reply With Quote