Support Forum

TinyMCE icons not showing

20 Answers

New Answer

KV kvr28
kvr28
Member

You should be able to bypass the forum page through WP super cache, it might fix the issue for you

CA Capitano
Capitano
Member

Thanks – but been doing that for the past 5 years or so.

This problem surfaced only a few weeks ago – may as long ago as 2 months. No idea what changed at that point. Might purge & refresh the CDN as a precaution.

CA Capitano
Capitano
Member

It’s the CDN. Disabling CDN support in WP Super Cache resolved the problem.

I have purged it, so I hope that it remains resolved once the purge and refresh has propagated to all the data centres.

YS Yellow Swordfish
Yellow Swordfish
Member

I wasn’t aware that wp-cache included any buttons for the editor. Bit of a surprise.

If this IS the issue then the problem might just be that many plugin authors make the false assumption that the tinyMCE editor can ONLY be used by the WP Admin whereas for quite some time now the WP team have exposed the editor to enable it’s use anywhere – which is what we do with Simple:Press.

If this is the case then they often run support code for their editor additions but do NOT run it on the front end – or run part of it more like. This can often be changed with a small edit to the third party plugin code but that really does depend on how it is constructed..

CA Capitano
Capitano
Member

Resolved.

Advice from the CDN support desk:

Known issue: Firefox not loading cross domain name fonts

You need to add the Access-Control-Allow-Origin header via your .htaccess file:

<FilesMatch “.(ttf|otf|eot|woff)$”>
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin “*”
</IfModule>
</FilesMatch>

IK Ike
Ike
Member

Glad they were able to sort it out for you! Thanks for letting us know.