Hi there,
my own favicon is not displayed on the iPhone under Safari under Favorites. The WordPress logo is displayed here.
How can I change this?
Hey Markus,
Could you post a link to your site, so that we can have a closer look please? If you added the site to favourites before you changed the icon, then you might have to add it again.
Best regards,
Rikard
wo erwartest du das Favicon zu sehen in Safari? – weil ich ( jedenfalls auf deiner Homepage ) sehe dein favicon – wenn auch im Darkmode zu wenig Kontrast vorhanden ist.:
where do you expect to see the favicon in Safari? – because I ( at least on your homepage ) see your favicon – even if there is too little contrast in darkmode:
hier in der Übersicht werden die aber mittels Apple Touch Icon dargestellt – das ist etwas anderes als das FavIcon.
here in the overview, however, are represented by means of Apple Touch Icon – that is something different than the FavIcon.
_____________
PS: obwohl ich sehe, dass du Borlabs Cookie nutzt, öffnet sich das Popup bei deiner Homepage in meinem Firefox nicht – ausserdem sind die Dienste aktiv – auch ohne Zustimmung.
Hallo,
danke für die Infos. Wie kann ich den das Apple Touch Icon in Enfold einstellen?
Hi there,
thanks for the information. How can I set the Apple Touch Icon in Enfold?
Hi,
Please try this in your functions.php file:
function add_apple_touch_icons(){
?>
<link rel="apple-touch-icon" href="URL of your image" />
<link rel="apple-touch-icon" sizes="72x72" href="URL of your image" />
<link rel="apple-touch-icon" sizes="114x114" href="URL of your image" />
<link rel="apple-touch-icon" sizes="144x144" href="URL of your image" />
<?php
}
add_action( 'wp_head', 'add_apple_touch_icons' );
And add the URLs of your icons in the href values.
Best regards,
Rikard