Jump to content

[Resolved] Home Page Link


Recommended Posts

Open the templates/main.php file for your skin and search for "main-logo"; edit that line:

// Find this line:
<a href="{$STORE_URL}" class="main-logo"><img src="{$STORE_LOGO}" alt="{$META_TITLE}"></a>

// Change {$STORE_URL} to the address you want:
<a href="http://www.mysite.com" class="main-logo"><img src="{$STORE_LOGO}" alt="{$META_TITLE}"></a>

 

Link to comment
Share on other sites

In the breadcrumb? Open templates/element.breadcrumb.php and edit it in the same way as you did the other file.

// Find this line:
<li><a href="{$STORE_URL}"><span class="show-for-small-only"><svg class="icon"><use xlink:href="#icon-home"></use></svg></span><span class="show-for-medium-up">{$LANG.common.home}</span></a></li>

// Change {$STORE_URL} to the address you want:
<li><a href="http://www.mysite.com"><span class="show-for-small-only"><svg class="icon"><use xlink:href="#icon-home"></use></svg></span><span class="show-for-medium-up">{$LANG.common.home}</span></a></li>

 

Link to comment
Share on other sites

That line of code was not in the Minimaliser skin templates/element.breadcrumb, but i found by changing the {$STORE_URL}

in this line <li class="show-for-medium-up"><a href="{$STORE_URL}" title="{$LANG.common.home}"><i class="fa fa-home"></i></a></li>
 found in templates/box.navigation.php it worked.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...