Hello,
after I have deployed WordPress from my local server to the public webserver, all icons from the Theme Enfold are missing.
All images of the website are still shown, only enfold specific icons are missing.
How can I fix this problem?
Thank you very much.
Andy
Hey oehsg,
If you check the Chrome console, you`ll these issues: http://prntscr.com/emecea – to fix it you need to add the below code at your .htaccess
<FilesMatch “\.(ttf|otf|woff)$”>
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin “*”
</IfModule>
</FilesMatch>
Let me know if it works :)
Best regards,
John Torvik
Hey,
yeah, thanks a lot! Now it works :-)
But be carefull, you have to replace the semicolons by real ASCII semicolons (which are straight, not italic).
Cheers