What is it supposed to be?
When I remove the font-family from it, it renders an actual blank box, like you will commonly see with icon errors.
You custom icon renders as a skewed white square, as if it’s intentional.
Thread Starter
vind
(@vind)
If you are seeing a skewed solid white square, that is the logo for Bandcamp, which is supposed to render next to the brand’s name on that page.
Hey @vind
The icon I see on your page matches the logo I see on Bandcamp.
Possibly a local cache issue on your end?
Thread Starter
vind
(@vind)
I discovered that the only link we had directing to that page from our website was called through an HTTP request and not HTTPS, and it seems the custom font error was caused by this circumstance alone. I would assume this is a bug?
Ah that makes sense. Protocol mismatch, blocked by a CORS policy.
The plugin uses plugin_dir_url( __FILE__ ) as the base for the CSS file, which traces down to a call to is_ssl() for the protocol. Since the server is set up for hTTPS, the included URL has https.
Your site shouldn’t be able to load in http in this case, you need to set up a redirect rule for that to prevent it from happening.