Page 1 of 1

Favicon in 4.0.2.3 multistore

Posted: Fri Nov 29, 2024 4:29 am
by knigisan
Hi,

How to add favicon in 4.0.2.3 multistore for each domain? If i use this method viewtopic.php?t=229480 it would be the same for each domain. I need differrent favicon's for every shop/domain?

Re: Favicon in 4.0.2.3 multistore

Posted: Fri Nov 29, 2024 6:50 pm
by paulfeakins
knigisan wrote:
Fri Nov 29, 2024 4:29 am
I need differrent favicon's for every shop/domain?
If you can't find an extension, you could pay a developer such as ourselves or post a job in the Commercial Support Forum.

Re: Favicon in 4.0.2.3 multistore

Posted: Fri Nov 29, 2024 11:45 pm
by Cue4cheap
knigisan wrote:
Fri Nov 29, 2024 4:29 am
Hi,

How to add favicon in 4.0.2.3 multistore for each domain? If i use this method viewtopic.php?t=229480 it would be the same for each domain. I need differrent favicon's for every shop/domain?
Are you using the same theme for all stores? If so I would suggest you do not. If nothing else use a different header in a theme folder and select that for one of your other stores. i.e. store 2 theme create
/catalog/view/theme/store2/
and under catalog/view/theme/store2/template/common/
header.twig
Then add this to the header like is pointed out in that topic:

Code: Select all

I add this line <link rel="icon" type="image/x-icon" href="/image/store2favicon.ico">
in header.twig it is work now
Mike

Re: Favicon in 4.0.2.3 multistore

Posted: Sat Nov 30, 2024 12:49 am
by knigisan
Cue4cheap wrote:
Fri Nov 29, 2024 11:45 pm
knigisan wrote:
Fri Nov 29, 2024 4:29 am
Hi,

How to add favicon in 4.0.2.3 multistore for each domain? If i use this method viewtopic.php?t=229480 it would be the same for each domain. I need differrent favicon's for every shop/domain?
Are you using the same theme for all stores? If so I would suggest you do not. If nothing else use a different header in a theme folder and select that for one of your other stores. i.e. store 2 theme create
/catalog/view/theme/store2/
and under catalog/view/theme/store2/template/common/
header.twig
Then add this to the header like is pointed out in that topic:

Code: Select all

I add this line <link rel="icon" type="image/x-icon" href="/image/store2favicon.ico">
in header.twig it is work now
Mike
Thanks, i will try this.