Click on Logo to send to website

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
Hi all,

How can I change the hyperlink of the logo?  When I click on it I would like it to go back to the website and not the store.

Thanks
11 years ago
Have a look at Views > Shared > Header.cshtml

You should see something like:

<div class="header-logo">
        <a href="@Url.RouteUrl("HomePage")"</a>

Simply swap @Url.RouteUrl("HomePage") for your desired url.

e.g.
<div class="header-logo">
        <a href="http:www.YourNewUrl.here)"</a>
11 years ago
Sorry, forgot to mention I am running version 1.90
11 years ago
Thanks, you pointed me in the right direction....  the file name was  HeaderMenu.ascx

Running great now.  Thx again
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.