![]() |
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} |
All times are GMT -8. The time now is 02:25 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.