Hi, I have a problem with missing icons
on version of my web with www in URL http://www.denzeny.sk/
http://denzeny.sk/ Without www it is ok
-
This topic was modified 10 years by
miroslavkulich.
-
This topic was modified 10 years by
miroslavkulich.
Ideally you site should serve only one version of site, and have the other version redirect to the single version you’ll be using. (eg., setup site to redirect non www to always use www). Otherwise any caching system you might be using can get confused, as it’s two different sites, technically, with some elements.
Hello,
This happens usually when loading fonts from another source so the solution would be to load the fonts from the same source. This method worked for most users: http://webmasters.stackexchange.com/questions/71630/font-blocked-from-loading-by-cross-origin-resource-sharing-policy-no-access-co
I hope this helps.
Thanks.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Hello,
This is my htacess….so I think, it´s not that case Bogdan, or am I wrong?
Maybe it´s cause of 2 different versions of web /www and nonwww/ like Chris S already wrote? How can i delete http://www.version of my site?
Thank you
-
This reply was modified 10 years by
miroslavkulich.
That was htaccess in web folder. In the root folder on FTP, i have just
php_value max_input_vars 100000
Hi,
You simply have to enter the code provided in the soluition in your htaccess like in this topic: https://forum.tagdiv.com/topic/strange-chinese-symbols-replaced-icons-and-arrows/ (bottom reply) and check to see if the error goes away.
<IfModule mod_headers.c>
Header add Access-Control-Allow-Origin “*”
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Thank you
I just change the code,
<IfModule mod_headers.c>
Header add Access-Control-Allow-Origin “*”
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
http://zamoralive.com/, but not working, pls give me thru solutions
info@alarconfilms.com
Hello,
This issue is different for each case. In some cases it is caused by cdn in other cases it is caused by serving different versions of your site lie Chris suggests above.
The solution you posted above does not work for everyone. It works on most hosting servers but you will need to find a solution that works on your end. This is not a theme bug but a cdn issue or caused by multiple versions of your site. Basically anything that prevents fonts from being loaded properly. It’s a font issue that happens regardless of the theme used. We simply use icons as fonts and that is why the issue is so obvious.
The htaccess file is different for everybody so there is no one solution I can provide that will work for everyone. You have to do a little digging as there are multiple solutions online for this issue and you must find the one that works for your case in particular:
Here are abunch of different sites with different versions of the solution:
https://www.google.ro/search?sourceid=chrome-psyapi2&ion=1&espv=2&ie=UTF-8&q=cdn%20fonts%20origin&oq=cdn%20fonts%20origin&aqs=chrome..69i57.2319j0j7
I hope this helps.
Thank you!