![]() |
Breadcrumb Home Link
I have the x-cart at http://www.thevegetarianexpress.com/cart
I don't want to use the x-cart home.php anywhere. I've redirected the logo in the head.tpl to the site root. I also need to change the breadcrumb link (see below). Am I missing anything else? In the breadcrumbs I want users to click on the "Vegetarian Express" or home link and have it take them to http://www.thevegetarianexpress.com without messing up the rest of the breadcrumbs. I've seen reference to this, but not with the path arrangement that I have. |
Re: Breadcrumb Home Link
In the auth.php
you can able see the code like this. PHP Code:
in this remove the "home.php " and leave it blank or provide a link as you like. |
Re: Breadcrumb Home Link
This code is not in the auth.php file in 4.2
|
Re: Breadcrumb Home Link
I found what I needed here.
I'm hoping that covers everything... ?? |
Re: Breadcrumb Home Link
How do I change the "company name" (x-cart root) name to simply "Home" in version 4.2.2? I've done this in 4.1.x versions but the code is different.
Also, how do I change the "::" in the page title? |
Re: Breadcrumb Home Link
1. (never tried this one) In root/postauth.php find
$location[] = array((!empty($lbl_site_name) ? $lbl_site_name : $config["Company"]["company_name"]), "home.php"); and replace $config["Company"]["company_name"] with your wording 2. In root/include/func/func.core.php find $html_page_title = implode(' :: ', $tmp); and replace :: with your symbol |
Re: Breadcrumb Home Link
$html_page_title = implode(' - ', $tmp); worked (although it took a little while to find)
Changing the postauth.php seems to remove the "root" (home.php) from the breadcrumb entirely. All I want to do is have it say something other than "our company name". This was done in v4.1.x as follows Code:
{* $Id: location.tpl,v 1.14.2.2 2007/06/18 11:42:03 max Exp $ *} but 4.2 doesn't seem to use "location.tpl" (at least it doesn't seem to change anything when I change it) |
Re: Breadcrumb Home Link
It does work the way I posted it - replacing the $config["Company"]["company_name"] with whatever you want it to say
Here is the line I just tried and it works $location[] = array((!empty($lbl_site_name) ? $lbl_site_name : "Home"), "home.php"); |
Re: Breadcrumb Home Link
That works, but it is not what I am looking for. It renames the site title to "Home". All I want is the breadcrumb to say "Home" for the root instead of the company name.
|
Re: Breadcrumb Home Link
in customer/bread_crumbs.tpl
replace Code:
{foreach from=$location item=l name=location} with Code:
{foreach from=$location item=l name=location} |
Re: Breadcrumb Home Link
That didn't work either :(
|
Re: Breadcrumb Home Link
This works, added code in red
Code:
|
Re: Breadcrumb Home Link
I appreciate the help, and that last one changed the "company name" to "Home", but now the links don't work.
|
Re: Breadcrumb Home Link
I got it. I had to add a <br /> tag because of the "hidden" JavaScript warning.... got the styles to work too.
Code:
{* |
Re: Breadcrumb Home Link
Well that was a hard one :) Glad you got it working.
|
Re: Breadcrumb Home Link
It seems to work in 4.3 as well.
Thanks! |
Re: Breadcrumb Home Link
Thanks for these infos ....
I was following this thread trying to do the same thing... Here is what worked better for me in 4.2.X... or else I was still getting my "Company Name" in the bread crumb on the first Home page. Then just have the { if $l.0 ....} before the { if $l.1 ....} loop. Code:
{* |
Re: Breadcrumb Home Link
Hi! How did you solve problem with breadcrumbs home link? I have the same issue i need Home link to go to main domain of the website instead of the xcart folder. thanks
Quote:
|
All times are GMT -8. The time now is 07:57 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.