MyBB Community Forums

Full Version: Can't find where <link href> is located.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
To preface, I'm using a custom theme. On any given page of my forum, this attribute is added in the header (in between <head> tags), along with all of the other normal links and references:

<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">


I do not want this there as I do not need it. Naturally, the first place I checked was my headerinclude template. Now, I have thoroughly checked this relatively short template many several times and this is nowhere to be found. Same with my header template.

I've looked through various other templates, dug through plugin files, done content:stackpath Windows searches and simply cannot find where the source of this link is.

Is there something I'm missing here? Huh
imo.... it's the link of font icon's css....

go to here.... https://stackpath.bootstrapcdn.com/font-...me.min.css

you will get the css of icons..
Is this link present on every theme? It's unlikely, but it is possible that a plugin is adding it. It's more likely that it's in one of the header templates somewhere, although being that if it's not in the headerinclude or header templates, it'd have to be in one of the header_welcome_block templates (and that's not likely either).

Perhaps more importantly, where exactly does this link show up in your "view source" inspection of the page? Is there anything recognizeable that it has before or after?
(2020-11-02, 03:54 AM)PARADOXP Wrote: [ -> ]imo.... it's the link of font icon's css....

go to here.... https://stackpath.bootstrapcdn.com/font-...me.min.css

you will get the css of icons..

Yes I'm aware of what the sheet is. I'm saying I don't need it and can't find out how it is being linked in my header.

(2020-11-02, 04:00 AM)Darth Apple Wrote: [ -> ]Is this link present on every theme? It's unlikely, but it is possible that a plugin is adding it. It's more likely that it's in one of the header templates somewhere, although being that if it's not in the headerinclude or header templates, it'd have to be in one of the header_welcome_block templates (and that's not likely either).

Perhaps more importantly, where exactly does this link show up in your "view source" inspection of the page? Is there anything recognizeable that it has before or after?

It's due to the plugin "OUGC Awards". I found this out by inspecting it's placement like you said and it fell in between {$stylesheets} and the lang.unknown_error javascript. The only thing in between being the OUGC Awards stuff. It was in one of the plugin's templates.

Thank you for the response, I appreciate your help