Plugin Author
Tim
(@timwass)
Hi Wiepkje,
I tried to replicate your problem with the clean twentyfourteen theme but everything looks fine in my test environment, so i’m not sure what is causing the problem. But the Easy facebook feed plugin is loading a small part of the bootstrap css to style the post panels. Maybe something there is overwriting your css child theme and causing problems. You can disable the bootstrap css in wp-content/plugins/easy-facebook-feed/class.eff.php and comment line 28 and 29, like this:
public static function eff_stylesheet() {
//wp_register_style( 'eff_bootstrap', plugins_url('css/eff_bootstrap.min.css?8', __FILE__) );
//wp_enqueue_style( 'eff_bootstrap' );
wp_enqueue_style( 'eff-font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css ');
}
Is this solving any problems with your child theme?
Hi Tim,
Yes! That dit the trick. Check it out at http://www.theaterleeuwenhart.nl. But what happens when you launch an update? I made a childtheme. Can I copy and paste the whole class.eff.php into my childtheme functions.php?
Merci bien again,
Wiepkje
Plugin Author
Tim
(@timwass)
Hi Wiepkje,
I think i found the problem. I looked into the Easy Facebook feed css and noticed that it also adjusted css elements other than the Easy Facebook feed layout. This was probably messing up your theme.
I changed that in version 1.2, so you can simple update the plugin. 🙂
Tim
Tim! You solved the problem. Thanks, super support. The thread can marked as resolved.