Elxis CMS Forum

Support => Elxis 4.x/5.x DEV => Topic started by: Luca on November 19, 2012, 19:01:09

Title: Subsite's favicon... where?
Post by: Luca on November 19, 2012, 19:01:09
Sorry, about the favicon.ico....
What about the favicon for the subsites? Where to put it?
Thanks
Title: Re: Subsite's favicon... where?
Post by: datahell on November 20, 2012, 08:56:36
Read this: https://forum.elxis.org/index.php?topic=7261.msg46878#msg46878 (https://forum.elxis.org/index.php?topic=7261.msg46878#msg46878)
Title: Re: Subsite's favicon... where?
Post by: Luca on November 20, 2012, 12:00:24
@Datahell

Thank you for your answer, I've read it already...
The subsite favicon' path shows correctly, I mean the URL is pointing at its subsite location (http : // domain.com/subsite/media/images/favicon.ico). Actually, it is pulled out from the mother site' media folder, resulting in the same favicon being used for both sites.

Maybe I am missing something, or this is the expected behavior... Anyway, is a very very minor point for me

Luca
Title: Re: Subsite's favicon... where?
Post by: Luca on November 25, 2012, 22:47:07
Ok..

Returning on this subject..

Is that correct to have the favicon.ico (for the site #2) in the
Quote
/public_html/media/images/site2
folder, in order to be correctly displayed in the relevant subsite?

because it appears not...
Title: Re: Subsite's favicon... where?
Post by: datahell on November 25, 2012, 23:19:02
Elxis does not separates favicons based on the sub-site.
BUT you can easily do so by using setFavicon method of the elxisDocument library.

eFactory::getDocument()->setFavicon('url of favicon here');

The best place to do so is inside your template's index.php file.

Example
Let's say in Elxis root folder you have favicon.ico for the mother site, favicon2.ico for sub-site 2, favicon3.ico for sub-site 3, etc...
You can also use PNG images instead of ICO ones, and name them whatever you like.
In template's index.php file write:

Code: [Select]
$favicon = 'favicon.ico';
if (defined('ELXIS_MULTISITE') && (ELXIS_MULTISITE > 1)) {
     $favicon = 'favicon'.ELXIS_MULTISITE.'.ico';
}
$favurl = eFactory::getElxis()->secureBase().'/'.$favicon;
eFactory::getDocument()->setFavicon($favurl);
Title: Re: Subsite's favicon... where?
Post by: Luca on November 26, 2012, 12:56:53
Thank you @datahell, wonderful and elegant!  :-*