You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Hello: I know this issue has come up before, but I searched the forum and was unable to find a solution that works.
For the breadcrumbs the store home comes up as: index.php?app=ecom&ns=splash
For the Online Store Menu the store home comes up as: index.php?app=ecom&ns=splash
I would like to it to be: index,php
What is the best way to accomplish this?
Thanks you,
Estelle Carol
Offline
carolsim wrote:
Hello: I know this issue has come up before, but I searched the forum and was unable to find a solution that works.
For the breadcrumbs the store home comes up as: index.php?app=ecom&ns=splash
For the Online Store Menu the store home comes up as: index.php?app=ecom&ns=splash
I would like to it to be: index,php
What is the best way to accomplish this?
Thanks you,
Estelle Carol
index.php goes to the cms home page, those links go to the store home. Are you trying to change where they go?
Last edited by jj1987 (06-27-2012 07:57:08)
Offline
Yes, I would like those links to go to index.php. Sorry about the delayed response. I was called away for a couple of days.
Last edited by carolsim (07-01-2012 00:03:30)
Offline
For breadcrumbs you would update "Breadcrumbs Display" which can be found at System > Displays > Display Includes
Change this line
$link = $data['link'];
to this
if($name == 'Store Home'){ $link = 'index.php'; } else { $link = $data['link']; }
If you edit "Store Header Menu" in the same location, edit the following line
<a href="<?php print $link_home; ?>" title="Store Home">Store Home</a>
to this
<a href="index.php" title="Store Home">Store Home</a> |
Last edited by jj1987 (07-05-2012 08:55:17)
Offline
Hi John,
There is no "Store Header Menu" in ver8 but there is a "Skin Widget Store Menu" but there are no links to the home page button in it... there is also in core-private a "skinwidgetmenustore.php" but again I see no link to home buttons in it. So a bit more help is still needed.
Could I suggest a simple method of choosing/using Splash or Home inside the user backend for all home links, including breadcrumbs, store menu, main menu, continue shopping etc. in fact every where you would click Home, Maybe (Use Default, All Splash, All Home) as I have seen this query/question over and over again on the forum.
Cheers,
Bruce.
Offline