Open GoogleCodeExporter opened 8 years ago
The conflict is caused by the call for google fonts. To remove the call, add
this code to the end of the functions.php file:
function remove_open_sans() {
wp_dequeue_style( 'twentytwelve-fonts' );
}
add_action('wp_print_styles','remove_open_sans');
This solved the problem for me.
Original comment by iveydo...@gmail.com
on 19 Apr 2013 at 2:16
Sorry, the above is assuming you are using wordpress. But in general, I've
found this code does not work with google fonts.
Original comment by iveydo...@gmail.com
on 19 Apr 2013 at 2:18
I was not using word press, and was not using Google fonts on the project.
I was using @font-face's if that's relevant.
Original comment by aspop...@gmail.com
on 20 Apr 2013 at 9:34
I'm having the same issue, on a stand alone html file that's calling @font-face.
Original comment by ke...@kgcreative.com
on 4 Sep 2013 at 4:54
Mee too have same issue
Original comment by srinivas...@gmail.com
on 26 Dec 2013 at 11:15
I'm having the same issue on my site. I am not using google fonts but am using
my own custom fonts that are locally hosted.
Original comment by berman....@gmail.com
on 26 Mar 2014 at 10:10
Back from the dead... There is a new version of the script. It has some CSS
parsing and processing improvements. If you're still using it, or would like to
try again, could you confirm that this issue is solved or not?
Original comment by wou...@dynora.nl
on 4 Apr 2014 at 11:46
Where is the new version of the script? Should I download by checking out the
SVN repo?
Original comment by berman....@gmail.com
on 4 Apr 2014 at 9:04
I fixed the issue myself if anyone is interested? I adjusted the code so it
would ignore linked stylesheets on other domains.
Original comment by berman....@gmail.com
on 11 Apr 2014 at 5:54
I recently ran into this error as well with a Wordpress site. Has the code been
updated? Where can I grab it from?
Original comment by RSAdevel...@gmail.com
on 1 Dec 2014 at 7:57
I am having this problem in WordPress. Will the code suggestion from iveydo
above work as shown:
function remove_open_sans() {
wp_dequeue_style( 'twentytwelve-fonts' );
}
add_action('wp_print_styles','remove_open_sans');
Original comment by reflecti...@rye5190.org
on 15 Jan 2015 at 2:23
Original issue reported on code.google.com by
aspop...@gmail.com
on 22 Jan 2013 at 1:39