XF 1.3 Favicon Not Displaying

denisx04

Active member
I have my favicon uploaded to the root, and on my old theme it displays fine. When I switched to my new default skin the xenforo favicon displays, odd thing is when I log onto the ACP my OLD favicon which I want to use shows up.

Any idea how I can get my old favicon to show up on my new theme?

Url is www.enixorigin.com/forum


I also tried Jake's method.

Code:
<!DOCTYPE html>
<html id="XenForo" class="Public {xen:if {$visitor.user_id}, 'LoggedIn', 'LoggedOut'}">
<head>
<meta charset="utf-8" />
<xen:if is="{$requestPaths.fullBasePath}"><base href="{$requestPaths.fullBasePath}" /></xen:if>

<title><xen:if is="{$title}">{xen:raw $title} | {$xenOptions.boardTitle}<xen:else />{$xenOptions.boardTitle}</xen:if></title>

<link rel="stylesheet" type="text/css" href="css.php?css=xenforo,form,public&amp;style={xen:urlencode $_styleId}&amp;d={$visitorStyle.last_modified_date}" />
<!--XenForo_Require:CSS-->

<xen:include template="google_analytics" />
<xen:include template="page_container_js_head" />

<xen:if is="{$pageDescription.content} AND !{$pageDescription.skipmeta} AND !{$head.description}"><meta name="description" content="{xen:string wordTrim, {xen:helper stripHtml, {xen:raw $pageDescription.content}}, 200}" /></xen:if>
<xen:if is="{$head}"><xen:foreach loop="$head" value="$headElement">{xen:raw $headElement}</xen:foreach></xen:if>
<LINK REL="SHORTCUT ICON" HREF="http://enixorigin.com/favicon.ico">
</head>
<body>
 
favicons typically have really long cache times (1 year?) I've sometimes had to wait, restart apache, F5 browser cache clear, browser delete all, etc before it changed. This was 10 years ago though as mine hasn't changed since then.
 
Top Bottom