Implemented Display touch icons / favicons even when URL is private

Alternadiv

Well-known member
I'm posting this as a suggestion although I'm not sure if this is something XenForo can change.

1652644066356.webp

That's a link to a thread on my site in a forum where guests cannot read thread content. My suggestion is to still show the icon and perhaps the meta description of the forum (because guests can read the description).
 
Upvote 0
This suggestion has been implemented. Votes are no longer accepted.
The icons are already included on all pages. Many of the icons that appear in your style 404, which is probably why you're seeing this behavior:


Also, the size of one of the icons is not set correctly. The linked image size is 48x48 and should be set as such:
HTML:
<link rel="icon" type="image/png" href="/favicon.png" sizes="32x32" />

Also, you have duplicate manifest and theme color tags:
HTML:
<link rel="manifest" href="/webmanifest.php">
<meta name="theme-color" content="#b1a791" />

<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#5e5e5e">
 
Top Bottom