Favicons not showing in browser tabs
If anyone is newly experiencing their favicons not showing up in browser tabs on their LO pages, this may be the reason — and a solution.
Your favicons are probably not showing up any more because the code in the "Meta Tags" field of your PageWrapper are being placed in the <body> of the html doc instead of the <head>.
I'm not sure if this started happening because of a change in the way LO treats the Meta Tags field in the PageWrapper, or if it's always done this and Google just started treating <body>-placed meta tags differently than it had before.
Anyway — a fix (until, maybe, BB changes where the code is rendered) is the following.
In your PageWrapper's Meta Tags area,
wrap the code with a tag (I'm using a <section> tag with an id you can reference in javascript later (I'm using "lo-metatags-section").
Then, somewhere — probably at the bottom of the "HTML Body" field of your PageWrapper, put some code like this to move the Meta Tags scripts from the <body> of your doc to the <head>, where it should be:
<script> // MOVE CODE IN META TAGS SECTION OF PAGEWRAPPER TO DOC HEAD
document.addEventListener('DOMContentLoaded', function () {
var faviconCode = document.getElementById('lo-metatags-section');
if (!faviconCode) return;
// move faviconCode children into <head>, then remove the wrapper
while (faviconCode.firstChild) {
document.head.appendChild(faviconCode.firstChild);
}
faviconCode.remove();
});
</script>
Answers
-
Thank you @Kyle Booth for posting this! Very helpful to someone who may be coming in and searching for this information.
0
Categories
- All Categories
- 6 Blackbaud Community Help
- 211 bbcon®
- 1.4K Blackbaud Altru®
- 403 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.2K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.6K Blackbaud Financial Edge NXT®
- 658 Blackbaud Grantmaking™
- 579 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 943 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.7K Blackbaud Raiser's Edge NXT®
- 3.8K SKY Developer
- 250 ResearchPoint™
- 120 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 241 Member Lounge (Just for Fun)
- 36 Blackbaud Community Challenges
- 37 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Grid View Batch
- 3 (Closed) PowerUp Challenge: Chat for Blackbaud AI
- 3 (Closed) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 798 Community News
- 3K Jobs Board
- 56 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)



