Small Icons problem

Posted in: Newspaper
Post count: 4

icons problem

Some icons do not appear occasionally. Is this hosting problem or theme problem?

Post count: 23312

Hello karakey,

This issue is known when using CDN or loading fonts from a different source. Please try to use this solution and take a look at this: http://screencast.com/t/AMjW530CSH6 and this: http://screencast.com/t/dLjEUGGwQUZ
The solution to this issue is simple. You will need to add some code to your .htaccess file like this post suggests: https://forum.tagdiv.com/topic/strange-chinese-symbols-replaced-icons-and-arrows/

Hope this helps and let us know how it goes!

Thank you for the message!

Post count: 4

Hi Mr. Catalin
My problem is solved! Best Support! Thanks!

Details:

I added mini codes in .htaccess file look like this;

BEFORE
________________________________________

# 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
________________________________________

AFTER
________________________________________

<IfModule mod_headers.c>
Header add Access-Control-Allow-Origin “*”

# 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

Post count: 23312

Hello karakey,

I am glad that I could help you!

Thank for your appreciation and have a nice day!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.