PrestaShop Forum

The best place in the world to ask questions about PrestaShop and get advice from our passionate community!

PrestaShop Forum

Jump to content

 

homepage logo url

5 replies to this topic
#1
tuxster

    PrestaShop Newbie

  • Members
  • Pip
  • 0 posts
my homepage_logo.jpg links to prestashop.com
how can i change the header url???
i mean homepage_logo.jpg, no logo.jpg

#2
stampy

    PrestaShop Apprentice

  • Members
  • PipPip
  • 94 posts
Hi

From memory, it's in your back office, Modules, Home text editor (configure) and there is a Homepage Logo link box. If you have this as blank it obviously doesn't link anywhere, but I guess you can link it where you want.

#3
target_locked

    PrestaShop Apprentice

  • Members
  • PipPip
  • 129 posts
Hi, you can try this:

Change homepage logo link:
Open \modules\editorial\editorial.xml
Search for:
Then change the link as your desire.

#4
wazza62

    PrestaShop Newbie

  • Members
  • Pip
  • 2 posts
Hi,

I am using the Homepage logo link to link to an external page, does anyone know how I can make this link open in a new page, rather than leaving my site.

Thanks in advance...

#5
rocky

    PrestaShop Superstar

  • US Moderators
  • 9988 posts
It is actually not advisable to open external links in new windows (see this article), but if you must, you can edit modules/editorial/editorial.tpl and change line 3 from:


{if $xml->body->home_logo_link}<a href="{$xml->body->home_logo_link|escape:'htmlall':'UTF-8'}" title="{$xml->body->$title|escape:'htmlall':'UTF-8'|stripslashes}">{/if}


to:


{if $xml->body->home_logo_link}<a href="{$xml->body->home_logo_link|escape:'htmlall':'UTF-8'}" title="{$xml->body->$title|escape:'htmlall':'UTF-8'|stripslashes}" target="_blank">{/if}

Check out Nethercott Constructions for PrestaShop guides and modules. Like us on Facebook for news updates.

#6
wazza62

    PrestaShop Newbie

  • Members
  • Pip
  • 2 posts
Thanks for the quick reply...

I have read the article & take your point, I won't bother...