Home Forums WoodMart support forum Icons from fonts don't load Reply To: Icons from fonts don't load

#74767

gueshu
Participant

Sorry, I found the solution, I added this to my .htaccess :

# Allow font assets to be used across domains and subdomains
<FilesMatch “\.(ttf|otf|eot|woff|woff2)$”>
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin “*”
</IfModule>
</FilesMatch>

It works, do you agree with this solution ?