
Originally Posted by
Gerome
At the end of includes/languages/english/meta_tags.php, you will find this line:
Code:
define('FAVICON','favicon.ico');
You will certainly have to overide this file for your template like that:
In the file includes/languages/english/your_template/meta_tags.php
Code:
define('FAVICON','your_template.ico');
You can do that for every template you have since you are supose to use different template for each site...
I have an easier solution:
In the file includes/languages/english/meta_tags.php (and your other languages)
change
PHP Code:
define('FAVICON','favicon.ico');
to
PHP Code:
define('FAVICON', STORE_FAVICON);
and in your sites config file(s) add:
PHP Code:
define('STORE_FAVICON', 'this_stores_iconfile.ico');
Saves you a lot of time of creating language-template folders and duplicate meta_tags.php files
Grtz Lenny
Bookmarks