我的网站页面上的Facebook评论存在问题:http://www.twisted-perfectionism.com/social-media-network-comparison/
评论部分被截断。你只能看到1条评论和3/4。下面有更多的内容,但它们不会出现。
这可能是什么原因?我不明白:(
请帮忙!
以下是single.php的代码:
<?php get_header(); ?>
<div id="page-<?php the_ID(); ?>" class="panel box">
<div class="in">
<?php while ( have_posts() ) : the_post();?>
<?php
$format = get_post_format();
get_template_part( "formatz/".$format );
if($format == "")
get_template_part( "formatz/standard" );
echo do_shortcode('[shareaholic app="share_buttons" id="xxx"]');
do_action('seo_facebook_comments');
?>
<?php endwhile; ?>
</div>
</div>
<?php get_footer(); ?>
答案 0 :(得分:0)
问题是位于wp-content / themes / selfless / style.css中的style.css文件的第159行设置的max-height: 206px;
样式。这可以防止Facebook评论部分高于206px,从而隐藏任何低于此高度的溢出。删除此行将显示您的所有评论。