Hey @htdat,
This has not been fixed and is still being worked on. I used Jetpack Support after and they told me a patch an update was being rolled out over the next few updates. I suspect this is to do with with the featured image issue.
Cheers
Darren
@font-face{font-family:”Open Sans”;src:url(‘”https://fonts.googleapis.com/css?family=Open+Sans”‘)}
The bug is caused by the single quotes and the double quotes being used. If you remove the ‘ single quotes at the beginning and end it works fine.
Easy, In your functions.php file add something like this
function child_canvas_override_features_slug() {
return 'newslug';
}
add_filter('woothemes_features_single_slug','child_canvas_override_features_slug');