Splunk Search

favicon change not working

GKC
Explorer

I managed to change the path of the favicon link in my app, so I could have my own favicon showing....but I cannot understand why it is not working. It still shows the default splunk favicon.

This is the resulting html:

I thought that maybe the browser was not finding the icon, but I already tried pasting the path in the browser and it clearly finds and shows the icon then.

does any of you have any clue why this is not working for my app??

Tags (1)
1 Solution

GKC
Explorer

After some hours of investigation I finally solved the issue.
Changing the href in the existing link tag for the favicon did not make any difference, so I assumed that some of the lines that were coming right after had something to do with my problem...

so I decided to change my javascript function, and make it append a new link at the end of the section....and it worked!!!

This is the actual javascript that I am using now:

onLoad=favicon();

function favicon(){
var link = top.document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = "/en-US/static/app/myappname/favicon.ico";
top.document.getElementsByTagName("head")[0].appendChild(link);

}

View solution in original post

GKC
Explorer

After some hours of investigation I finally solved the issue.
Changing the href in the existing link tag for the favicon did not make any difference, so I assumed that some of the lines that were coming right after had something to do with my problem...

so I decided to change my javascript function, and make it append a new link at the end of the section....and it worked!!!

This is the actual javascript that I am using now:

onLoad=favicon();

function favicon(){
var link = top.document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = "/en-US/static/app/myappname/favicon.ico";
top.document.getElementsByTagName("head")[0].appendChild(link);

}

Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...