Problem with favicon.ico

fgaep

New Member
Could someone pls advice me how I could dispay my or mailwizz favicon.ico? I already tried:
1. to change favicon.ico in mailwizz root, /backend, /frontend, /customer
2. to clear cache of my browsers - firefox and chrome
3. to reboot my dedicated server, I have mailwizz soft here: https://www.emailpartner.eu/ema/customer/index.php/guest/index
Notice: I used no themes like landon, ... .
Thanks
 

Attachments

  • firefox.jpg
    firefox.jpg
    8.2 KB · Views: 22
  • chrome.jpg
    chrome.jpg
    12.4 KB · Views: 18
for me works (in FF, IE, SeaMonkey, Safari):
editing the index.php and adding at the end

?>

<HTML>
<HEAD>
<link rel="shortcut icon" type="image/ico" href="http://www.YourMailWizzDomain.com/mwzPath/backend/favicon.ico" />

replace backend with customer or frontend respectively
the key is to have the absolute path in there, the relative one did not work for me

for the landon theme
in
/frontend/themes/landon-frontend/views/layouts/landing.php
fix this
<link rel="icon" type="image/ico" href="<?php echo AssetsUrl::themeBase('images/favicon.ico')?>">
like that
<link rel="icon" type="image/ico" href="http://www.YourMailWizzDomain.com/mwzPath/frontend/favicon.ico" />

;)
 
Last edited:
Thanks my friend frm.mwz. Backend ok - https://www.emailpartner.eu/ema/backend/index.php/guest/index, customer ok - https://www.emailpartner.eu/ema/customer/index.php/guest/index, but frontend is NOT ok in Firefox and Chrome - https://www.emailpartner.eu/ema/index.php/lists/jk2182ec478c4/subscribe.
I have now in /mw root/frontend/index.php this code:
<?php
// back to the application real index
header('location: ../');
exit;
?>
<HTML>
<HEAD>
<link rel="shortcut icon" type="image/ico" href="https://www.emailpartner.eu/ema/frontend/favicon.ico" />.
 
@twisted1919 would be nice if you could, perhaps where the logos are set, also make options available for the favicon to be set (maybe even have an option allowing one for all three backend/customer/frontend, and the latter similar for logos)?
 
The custom favicon is being overwritten with each update, which is a bit of a drag.
Any chance it could be excluded from the version updates and a separate favicon reference could sit in a non-overwriting folder?
 
Back
Top