change url logo and Home page

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 Jahre weitere
Hi everyone, use nopcommerce 1.60, i need to change the url of the logo and that of the home page but can not find the forms where this information is ... someone could give me some help?

thanks
13 Jahre weitere
I managed to change the url of the homepage but i still can not find the modules that change the url of the logo ..... Can someone help me?


thanks
13 Jahre weitere
please see NopCommerceStore\Modules\Header.ascx
13 Jahre weitere
thanks in NopCommerceStore\Modules\Header.ascx i could change the url of the home page but can not find this form in the url of the logo ....
13 Jahre weitere
in NopCommerceStore\App_Themes\Scheme_That_You_Use\styles.css change

a.logo
{
  background: url('images/logo.gif');
  display: block;
  width: 225px;
  height: 60px;
  text-decoration: none;
}
13 Jahre weitere
thanks ..... maybe I expressed myself badly, i must not change the logo ... the logo have a link to a web address ... I have to change this url ...

sorry for my english :P
13 Jahre weitere
If you want to change the URL, then in NopCommerceStore\Modules\Header.ascx you must change the


    <div class="header-logo">
        <a href="<%=CommonHelper.GetStoreLocation()%>" class="logo">&nbsp; </a>
    </div>


TO


    <div class="header-logo">
        <a href="http://YOUR_SITE.COM" class="logo">&nbsp; </a>
    </div>


When you click on the logo you will open http://YOUR_SITE.COM site.

Do I understand correctly?
13 Jahre weitere
If you want to change "Store URL" then in admin panel/Configuration/Global Settings/general you must change "Store URL" property.

"<%=CommonHelper.GetStoreLocation()%>" returns this "Store URL" address.
13 Jahre weitere
oh yes....thank you very much...it's ok!!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.