Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Rajat Varlani

    (@the_champ)

    Hi there,

    To fix it, place following code at the end of wp-content/themes/CURRENT_THEME/functions.php (in the root folder of your website) before ?> (if ?> is not there, simply place the code at the end of the file) and save the file back. CURRENT_THEME is your active theme:

    function the_champ_custom_css(){
    	?>
    	<style type="text/css">
    	div.fb-comments iframe{
    		height: 900px !important;
    	}
    	</style>
    	<?php
    }
    add_action('wp_head', 'the_champ_custom_css');

    Do let me know if you need assistance or custom solutions going forward.

    Thread Starter penserchanger

    (@penserchanger)

    Hi,
    The comment box is now fixed, thanks !
    Also do you have any advise for the warnings ? http://i.imgur.com/1wXUQdB.jpg (I dug a bit and found this only happen when this plugin is active).

    Thanks again !

    Plugin Author Rajat Varlani

    (@the_champ)

    Thanks for reporting this. I have noted this down and will fix it in next release.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Facebook comment height bugs’ is closed to new replies.