-
AuthorPosts
-
October 7, 2013 at 9:17 pm #171876
Like many others I have the problem, that all icons are replaced by some weird symbols in Firefox and IE. With chrome it works. I read all the threads about the problem and cleared the cache. Still not working.
I use your theme on two sites. On the first everything works just fine (built a few weeks ago). On the second one I have the problem (installed the theme a few days ago). Here is the URL of the second site http://www.eiweisspulver-test.com/. I tried it on three different computers and always have the same issues.
One guy posted his website http://p201475.mittwaldserver.info/ with the same problem. Kriesi said on his mac everything is fine. On my computers (windows) I see the same icon issues.
Thanks a lot for your help!
October 7, 2013 at 10:00 pm #171885Hello,
I am also having the same issue: http://www.mydesignspace.com – font icons do not appear in IE (10) or Firefox (24). In Safari (6.0.2) the icons appear but you cannot click on the links for them (I added twitter/linkedIn icons in about me section). Chrome (30.0.1599.69) seems to be the only browser that works.
I did change the site url from mydesignspace.com/wordpress to mydesignspace.com when I launched. Are the icons referencing the wrong directory now? If so, how can I fix that?
Regards,
MoniqueOctober 8, 2013 at 4:01 pm #172287Can someone help please? It´s kind of urgent and not just a caching problem.
October 8, 2013 at 5:15 pm #172326Hi!
I don’t see any issue with the icons on either site in any browser at the moment. All links active where the code shows the icon should have one and they are visible in icon lists.
If you can tell us the version of the OS maybe we can try to identify it further but so far it still appears like its a caching issue (at least from the information given and the view of the sites at the moment). If you have any caching plugins installed or CDN’s also make sure their data is reset as an extra step.
So any additional information on what browsers, version, OS, browser extensions installed etc we can get the better.
Regards,
DevinOctober 8, 2013 at 6:33 pm #172359Hi,
thanks for your reply. I´m using Windows 7 with the latest version of Firefox. Also I asked some more people with Windows machines to check my site. They see the same issues with the icons. So I suppose it´s not about browser extensions and caching. I don´t use any caching plugins and no CDN. With chrome everything is fine, but with Windows + Firefox you have the problem. All computers I tested with are located in Germany, but I don´t think location or language of the systems is the cause.
Best regards!
October 8, 2013 at 8:53 pm #172395Hi,
I have a Mac running 10.8.2 but I also am running VMware Fusion 5.0.3 with WIN 7 – also, on other computers in office running straight WIN 7 have the same issue.
Here are some screenshots of all browsers/OS:
Mac-Safari:
http://mydesignspace.com/wordpress/wp-content/uploads/2013/10/Mac-Safari.jpgVM-Chrome30:
http://mydesignspace.com/wordpress/wp-content/uploads/2013/10/VM-Chrome30.jpgVM-FF24:
http://mydesignspace.com/wordpress/wp-content/uploads/2013/10/VM-FF24.jpgVM-IE10:
http://mydesignspace.com/wordpress/wp-content/uploads/2013/10/VM-IE10.jpgMac-Chrome30:
http://mydesignspace.com/wordpress/wp-content/uploads/2013/10/Mac-Chrome30.jpgMAC-OS-FF:
http://mydesignspace.com/wordpress/wp-content/uploads/2013/10/MAC-OS-FF.jpgAlso, I do not have any plugins – just the Enfold template – no custom development
- This reply was modified 11 years, 1 month ago by Monique.
October 8, 2013 at 10:05 pm #172730Try going into functions-enfold.php in your theme files and look for:
/* * add html5.js script to head section - required for IE compatibility */ if(!function_exists('avia_print_html5_js_script')) { add_action('wp_head', 'avia_print_html5_js_script'); function avia_print_html5_js_script() { $template_url = get_template_directory_uri(); $output = ''; $output .= '<!--[if lt IE 9]>'; $output .= '<script src="'.$template_url.'/js/html5shiv.js"></script>'; $output .= '<![endif]-->'; echo $output; } }
Change it to this:
/* * add html5.js script to head section - required for IE compatibility */ /** if(!function_exists('avia_print_html5_js_script')) { add_action('wp_head', 'avia_print_html5_js_script'); function avia_print_html5_js_script() { $template_url = get_template_directory_uri(); $output = ''; $output .= '<!--[if lt IE 9]>'; $output .= '<script src="'.$template_url.'/js/html5shiv.js"></script>'; $output .= '<![endif]-->'; echo $output; } } **/
Now go to your header.php file and look for:
</head>
and add this line just above that:
<!--[if lt IE 9]><script src="http://mydesignspace.com/wordpress/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
See if that helps at all.
October 8, 2013 at 10:57 pm #172745Just made the changes. Still not working on FF, IE browsers after deleting cookies/cache/history but Safari now has an active state on logo: http://mydesignspace.com/wordpress/wp-content/uploads/2013/10/Safari-Firefox.jpg
October 8, 2013 at 10:58 pm #172746Thank you, but it didn´t change anything. Cleared cache once again and it´s still the same.
October 9, 2013 at 4:03 am #172845I’m not sure what it could be at this point. Earlier the icons were showing fine on my end and still are on my macbook but checking this afternoon they are missing on my desktop now.
Can you create a temporary admin account and reply back with the details so we can dig in a bit further.
October 9, 2013 at 4:16 am #172849This reply has been marked as private.October 9, 2013 at 5:04 am #172859This reply has been marked as private.October 9, 2013 at 2:43 pm #173038Thank you both, looking into it now.
October 9, 2013 at 4:12 pm #173092Hey Guys! At this point, would you mind also providing the login data to your ftp server?
I checked the sites in firefox and I can see the issue but I cant reproduce it. So I would like to try to update some files manually just in case they are for whatever reason corrupted.It would also allow me to tun some trial/error tests for additional insight.
Cheers!
KriesiOctober 9, 2013 at 4:39 pm #173105This reply has been marked as private.October 9, 2013 at 7:34 pm #173204Hey Monique!
Seems this is an Apache Server configuration problem with font files. I added the following to the htaccess file and it seems to work for me now:
For everyone else encountering this issue please try to do the same :)
Also for anyone else and my team: this might come in handy when dealing with font problems: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems- This reply was modified 11 years, 1 month ago by Kriesi. Reason: Reference 2: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems
October 9, 2013 at 8:13 pm #173238Hey Kriesi,
Just checked all the browsers/OS (WIN7 Chrome IE FF MAC OS 10.8.2 Safari FF Chrome) force refreshed and looks like all the icons are showing properly now! Thank you guys!!
Still one bizarre issue with Safari 6.0.2 – icons are there and always have been but the icons I added via the text block module where I added links to them are not showing as links.
<h6 style=”text-align: right;”>LEARN MORE ABOUT ME PROFESSIONALLY</h6>
[av_font_icon color="#c95516" icon="222" size="35px" position="right" link="manually,http://www.linkedin.com/in/moniquevirgilio" linktarget="yes"] [av_font_icon color="#c95516" icon="211" size="35px" position="right" link="manually,https://twitter.com/MyDesignSpace" linktarget="yes"]Any ideas?
Everything else is good!
October 9, 2013 at 9:14 pm #173267 -
AuthorPosts
- The topic ‘Icons still not working in Firefox and IE’ is closed to new replies.